-
Notifications
You must be signed in to change notification settings - Fork 1
Skip CD release workflow for bot commits #722
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
Changes from all commits
a58197f
ff63436
68904ae
a437b6d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,7 +5,6 @@ on: | |
| push: | ||
| branches: | ||
| - 'master' | ||
| - 'push-action/**' # Allow pushing to protected branches (using CasperWA/push-protected) | ||
|
|
||
|
Comment on lines
5
to
8
|
||
| jobs: | ||
| pre-commit_audit: | ||
|
|
||
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.
Replacing
CasperWA/push-protected@v2with a plaingit pushwill fail ifmasteris protected (the workflow previously used push-protected withunprotect_reviews: true, which strongly suggests branch protection is in place). Either keep usingpush-protected, or confirm/update the branch protection rules to allow this workflow’s actor/token (RELEASE_PAT/ GitHub Actions) to push directly tomaster(e.g., allow bypass or allow the PAT user to push).