I have two workflows sharing concurrency group:
jobs:
evaluate:
runs-on: [ android-emulator ]
concurrency: evaluation_emulator
and:
jobs:
other_tests:
runs-on: [ android-emulator ]
concurrency: evaluation_emulator
The second job has been cancelled:
Canceling since a higher priority waiting request for 'evaluation_emulator' exists
despite the fact the documentation says default behavior is to put workflow in a pending state, not cancelling:
When a concurrent job or workflow is queued, if another job or workflow using the same concurrency group in the repository is in progress, the queued job or workflow will be pending.
Why this happens?