Skip to content

Commit 2c176c7

Browse files
authored
Resolve qatest.yaml concurrency group error
Error: "The workflow is not valid. .github/workflows/qatest.yaml (Line: 23, Col: 10): Unrecognized named-value: 'matrix'. Located at position 1 within expression: matrix.runner"
1 parent 0fb4e04 commit 2c176c7

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/qatest.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run QA Test # Runs automated tests on a self-hosted QA machine
1+
name: Run QA Test # Runs automated tests on self-hosted QA machines
22

33
permissions:
44
contents: read
@@ -10,17 +10,13 @@ on:
1010
- completed
1111
workflow_dispatch:
1212
inputs:
13-
branch_name:
14-
description: 'Branch name to simulate workflow (e.g. develop)'
15-
required: true
16-
default: 'develop'
1713
build_id:
1814
description: 'Build workflow run ID (e.g. For github.com/secondlife/viewer/actions/runs/1234567890 the ID is 1234567890)'
1915
required: true
2016
default: '14806728332'
2117

2218
concurrency:
23-
group: qa-test-run-${{ matrix.runner }}
19+
group: ${{ github.workflow }}-${{ github.ref }}
2420
cancel-in-progress: false # Prevents cancellation of in-progress jobs
2521

2622
jobs:

0 commit comments

Comments
 (0)