diff --git a/src/sentry/integrations/github_enterprise/__init__.py b/src/sentry/integrations/github_enterprise/__init__.py index 1f1682068aa478..69798e00dc2da3 100644 --- a/src/sentry/integrations/github_enterprise/__init__.py +++ b/src/sentry/integrations/github_enterprise/__init__.py @@ -1,8 +1,6 @@ -from sentry import options from sentry.rules import rules from .actions.create_ticket import GitHubEnterpriseCreateTicketAction from .handlers import GithubEnterpriseActionHandler # noqa: F401,F403 -if options.get("github-enterprise-app.alert-rule-action"): - rules.add(GitHubEnterpriseCreateTicketAction) +rules.add(GitHubEnterpriseCreateTicketAction) diff --git a/src/sentry/options/defaults.py b/src/sentry/options/defaults.py index 76e1c22b5a7dc6..772623c1829d1b 100644 --- a/src/sentry/options/defaults.py +++ b/src/sentry/options/defaults.py @@ -612,12 +612,6 @@ register("github-app.client-secret", flags=FLAG_CREDENTIAL | FLAG_PRIORITIZE_DISK) # Github Enterprise Integration -register( - "github-enterprise-app.alert-rule-action", - type=Bool, - default=False, - flags=FLAG_MODIFIABLE_BOOL | FLAG_AUTOMATOR_MODIFIABLE, -) register( "github-enterprise-app.allowed-hosts-legacy-webhooks", type=Sequence, @@ -2970,10 +2964,6 @@ flags=FLAG_AUTOMATOR_MODIFIABLE, ) -register( - "ecosystem:enable_integration_form_error_raise", default=True, flags=FLAG_AUTOMATOR_MODIFIABLE -) - # Restrict uptime issue creation for specific host provider identifiers. Items # in this list map to the `host_provider_id` column in the UptimeSubscription