Replies: 1 comment
|
The cancellation is from a second concurrency group: your jobs:
upload:
concurrency:
group: ${{ github.workflow }}-upload
cancel-in-progress: false
queue: maxKeep the workflow-level PR cancellation rule as-is. GitHub documents that |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Question
💬 Feature/Topic Area
Other
Discussion Details
Hi, we currently having issue try to integrate "queue: max" in our workflow and but we fail to debug what went wrong.
What we want:
Only pull requests job run will be limited to newest push, all older jobs will be cancelled
Upload jobs should be queued and run once at a time
The following upload jobs are cancelled instead of being queued
https://github.com/termux/termux-packages/actions/runs/35399365318/attempts/1
https://github.com/termux/termux-packages/actions/runs/35399462957/attempts/1
The workflow file:
https://github.com/termux/termux-packages/blob/master/.github/workflows/packages.yml
All reactions