We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Currently our GHA are using pull_request_target instead of pull_request:
pull_request_target
pull_request
kyber/.github/workflows/tests.yml
Line 4 in d0f3223
This has the unfortunate consequence that 2 different PRs can cancel each other jobs, because of how github.ref works:
github.ref
push
gihub.ref
gihub.head_ref
master
test/pull_request_target
553
I think the solution is to switch our concurrency groups from gihub.ref to gihub.head_ref:
Lines 9 to 10 in d0f3223
The text was updated successfully, but these errors were encountered:
K1li4nL
No branches or pull requests
Currently our GHA are using
pull_request_target
instead ofpull_request
:kyber/.github/workflows/tests.yml
Line 4 in d0f3223
This has the unfortunate consequence that 2 different PRs can cancel each other jobs, because of how
github.ref
works:pull_request
pull_request_target
push
gihub.ref
gihub.head_ref
master
: default branchtest/pull_request_target
: topic branch name553
: pull request numberI think the solution is to switch our concurrency groups from
gihub.ref
togihub.head_ref
:kyber/.github/workflows/tests.yml
Lines 9 to 10 in d0f3223
The text was updated successfully, but these errors were encountered: