-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
feat(scm): Add SCM subscriptions platform publisher #107441
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: cmanallen/scm-platform
Are you sure you want to change the base?
feat(scm): Add SCM subscriptions platform publisher #107441
Conversation
| "organization_id": organization_id, | ||
| } | ||
| ], | ||
| "type": "bitbucket", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this helps, we have all of these provider names available in the IntegrationProviderSlug enum:
sentry/src/sentry/integrations/types.py
Lines 32 to 46 in 6469ade
| class IntegrationProviderSlug(StrEnum): | |
| SLACK = "slack" | |
| DISCORD = "discord" | |
| MSTEAMS = "msteams" | |
| JIRA = "jira" | |
| JIRA_SERVER = "jira_server" | |
| AZURE_DEVOPS = "vsts" | |
| GITHUB = "github" | |
| GITHUB_ENTERPRISE = "github_enterprise" | |
| GITLAB = "gitlab" | |
| BITBUCKET = "bitbucket" | |
| BITBUCKET_SERVER = "bitbucket_server" | |
| PAGERDUTY = "pagerduty" | |
| OPSGENIE = "opsgenie" | |
| PERFORCE = "perforce" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
| investigating the target integrations webhook.py file. | ||
| """ | ||
|
|
||
| sentry_meta: list["SubscriptionEventSentryMeta"] | None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason why we store the TypedDict instead of the actual objects themselves?
Also, when do we need multiple SubscriptionEventSentryMeta?
…scription-consumer
…scription-consumer
…scription-consumer
…scription-consumer
No description provided.