feat(repos): Add ConnectProviderDropdown component#113568
Merged
evanpurkhiser merged 2 commits intomasterfrom Apr 28, 2026
Merged
feat(repos): Add ConnectProviderDropdown component#113568evanpurkhiser merged 2 commits intomasterfrom
evanpurkhiser merged 2 commits intomasterfrom
Conversation
TkDodo
reviewed
Apr 22, 2026
053f2cf to
2fffccd
Compare
2fffccd to
ab9a324
Compare
ab9a324 to
b3daacf
Compare
A dropdown for connecting a new SCM integration from the repository settings page. Lists each supported provider and drives the useAddIntegration install flow.
b3daacf to
047f8bd
Compare
scttcper
approved these changes
Apr 28, 2026
…erdropdown-component
Contributor
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 5c875da. Configure here.
| import {getIntegrationIcon} from 'sentry/utils/integrationUtil'; | ||
| import {useOrganization} from 'sentry/utils/useOrganization'; | ||
|
|
||
| const SEER_COMPATIBLE_PROVIDERS = new Set(['github', 'gitlab']); |
Contributor
There was a problem hiding this comment.
Duplicated SEER_COMPATIBLE_PROVIDERS constant risks divergence
Low Severity
SEER_COMPATIBLE_PROVIDERS is defined identically in both connectProviderDropdown.tsx and noIntegrationsEmptyState.tsx in the same directory. If the set of Seer-compatible providers changes, one file could be updated while the other is missed, causing inconsistent Seer badging across the two views.
Reviewed by Cursor Bugbot for commit 5c875da. Configure here.
3 tasks
cleptric
pushed a commit
that referenced
this pull request
May 5, 2026
A dropdown for connecting a new SCM integration from the repository settings page. Lists each supported provider and drives the useAddIntegration install flow.
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.


A dropdown for connecting a new SCM integration from the repository
settings page. Lists each supported provider and drives the
useAddIntegration install flow.