| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
There was a problem hiding this comment.
This PR enables rebuilding PRs with merge conflicts by adding a workflow_dispatch trigger to the rebuild workflow. Since label triggers don't work when PRs have conflicts, this provides an alternative way to rebuild the compiled code through manual workflow dispatch.
.github/workflows/rebuild.yml:80
echo "::set-output name=changes::true"
.github/workflows/rebuild.yml:92
echo "Pushed a commit to rebuild the Action." \
"Please mark the PR as ready for review to trigger PR checks." |
gh pr comment --body-file - --repo github/codeql-action "$PR_NUMBER"
gh pr ready --undo --repo github/codeql-action "$PR_NUMBER"
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Since we check in our compiled code, we frequently get merge conflicts in the compiled code. We have a rebuild Action, but label triggers don't run when there are merge conflicts. So this PR adds a workflow_dispatch trigger that lets us rebuild a PR with conflicts via workflow_dispatch.
Example run: https://github.com/github/codeql-action/actions/runs/16809277853
Merge / deployment checklist