-
Notifications
You must be signed in to change notification settings - Fork 713
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
chore: fix GHA for merge-queue #4973
Conversation
.github/workflows/codeql.yml
Outdated
branches: [ "main" ] | ||
branches: [main] |
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.
Which triggers does the merge queue need? Since this one already had merge_group, I assume it also needs push or pull_request?
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.
This one is an outlier, it already had merge-queue
, push
and pull_request
. It is the only action with the branch name in double quotes, and the docs don't show that as example syntax.
|
||
jobs: | ||
regression-test: | ||
runs-on: ubuntu-latest | ||
|
||
if: ${{ github.event_name == 'pull_request' }} |
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.
Only run this on PRs
Release Summary:
Resolved issues:
n/a
Description of changes:
Missing event types for 3 GHA to trigger on merge queues.
Call-outs:
Testing:
How is this change tested (unit tests, fuzz tests, etc.)? relying on the CI
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.