BUG: concurrency with "cancel-in-progress: false" still cancel the next jobs instead of waiting. #53506
Unanswered
ItamarShalev
asked this question in
Actions
Replies: 1 comment 3 replies
-
See this discussion here: https://github.com/orgs/community/discussions/41518 |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Select Topic Area
Bug
Body
I have a job called Test and two more jobs.
`name: Code checks
on:
pull_request:
branches: [ main ]
push:
branches: [ main, dev ]
jobs:
Test:
runs-on: ubuntu-latest
concurrency:
cancel-in-progress: false
group: ${{ github.workflow }}-Test`
I want that every commit will run parallel to the two additional jobs, but for Test flow, only one check will run, I'm using the settings above.
But still, it cancels the next running instead of putting them in a queue and waiting.
Help ?
Beta Was this translation helpful? Give feedback.
All reactions