-
Notifications
You must be signed in to change notification settings - Fork 370
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
Concurrency issues in CI #1412
Milestone
Comments
For reference, here are the |
It seems like
I no longer know why this is occurring. |
This looks promising: # This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true I would still like to better understand why the issue is occuring though. |
For the above event logs, this looks like:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
We're seeing concurrency issues in CI where PRs are cancelling each others' jobs.
Steps to reproduce
This most commonly occurs when dependabot opens multiple simultaneous PRs.
The issue is that
github.ref
isn't specific enough and returnsmain
for PRs. We can make this more robust.See https://docs.github.com/en/actions/learn-github-actions/contexts for details.
Version
0.5.0.dev0 (06f91f7)
The text was updated successfully, but these errors were encountered: