feat(jira): Wire Marketplace installs through the API pipeline modal#116525
Open
evanpurkhiser wants to merge 1 commit into
Open
Conversation
Drive the Jira Cloud Marketplace install through the API pipeline modal, the same path Discord and MS Teams use. The configure link forwards `signed_params` to the org-link page, which opens the pipeline modal once an organization is chosen. Unlike MS Teams, which auto-advances silently, the Jira step is an interactive confirmation: it shows the Jira workspace and the Sentry organization and requires the user to click "Install Jira integration" before completing. A copied install link could otherwise connect an attacker's Jira workspace to a victim's org, so the screen lets the user catch a mismatch. - Add the `jiraIntegrationPipeline` confirmation step and register it. - Mark `jira` as an unconditional API pipeline provider. - Forward `signed_params` from the org-link page via `jiraParams`. Depends on the backend pipeline support landing first.
Contributor
📊 Type Coverage Diff✅ No new type safety issues introduced. Coverage: 93.59% |
scttcper
approved these changes
May 29, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
VDY-123: Jira Cloud: API-driven integration setup
Drives the Jira Cloud Marketplace install through the API pipeline modal, the same path Discord and MS Teams use. The configure link forwards
signed_paramsto the org-link page, which opens the pipeline modal once an organization is chosen.The Jira step is an interactive confirmation rather than a silent auto-advance: it shows the Jira workspace (
base_url) and the Sentry organization and requires the user to click "Install Jira integration" before completing. A copied install link could otherwise connect an attacker's Jira workspace to a victim's org, so the screen lets the user catch a mismatch.jiraIntegrationPipelineconfirmation step (integrationJira/index.tsx) and register it in the pipeline registry.jiraas an unconditional API pipeline provider.signed_paramsfrom the org-link page via ajiraParamsmemo.Depends on the backend pipeline support in #116500 — land and deploy that first, since the modal calls the new pipeline API.