diff options
author | AtlasLinden <114031241+AtlasLinden@users.noreply.github.com> | 2025-05-22 09:05:24 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-22 09:05:24 -0700 |
commit | cee546977da35f22b79fc80647da179d288f1ee8 (patch) | |
tree | f16e6aa614f5d95c025834027a9910c13e748b31 | |
parent | 55b1a16b8e64ca5cd5e1d75f024060fea4e8be3a (diff) |
Allow runners to operate independently
Currently if there are multiple workflow runs queued and a runner is offline, the online runner will wait for the offline runner to either timeout or complete the job before moving to the next job.
This adjustment should allow the online runner/s to move onto new workflow runs regardless of what other runners are up to.
-rw-r--r-- | .github/workflows/qatest.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/qatest.yaml b/.github/workflows/qatest.yaml index 14530ec824..dd42f28c88 100644 --- a/.github/workflows/qatest.yaml +++ b/.github/workflows/qatest.yaml @@ -16,7 +16,7 @@ on: default: '14806728332' concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ matrix.runner }} cancel-in-progress: false # Prevents cancellation of in-progress jobs jobs: |