Disable pr_opened_tasks workflow for all branches#769
Merged
Conversation
This workflow requires GitHub App credentials (APP_ID/APP_PRIVATE_KEY) that are not configured in the Slack fork. Disabling for all branches rather than deleting to ease future upstream syncs. Co-Authored-By: Claude <svc-devxp-claude@slack-corp.com>
tanjinx
approved these changes
Dec 31, 2025
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.
Summary
Disables the
pr_opened_tasksworkflow for all branches by addingbranches-ignore: ['*']to the trigger configuration.Reason
This workflow requires GitHub App credentials (
APP_IDandAPP_PRIVATE_KEY) that are not configured in the Slack fork. Without these credentials, the workflow fails when triggered.The workflow was added during an upstream sync from vitessio/vitess (commit fb13046) as part of porting the
vitess-botto GitHub Actions. However, it references upstream-specific processes and labels that may not apply to Slack's workflow.Approach
Rather than deleting the file entirely, we're disabling it to ease future upstream syncs. The file can be deleted later if desired.
Test plan