diff options
author | AtlasLinden <114031241+AtlasLinden@users.noreply.github.com> | 2025-05-06 11:02:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-06 11:02:57 -0700 |
commit | 2c176c75fc6951388668e41bd8bb59a5190b0f07 (patch) | |
tree | b881eb02c7ecff668f68bbee0335496bd6d18b0c /.github | |
parent | 0fb4e04107dd151f44f8718aa0ee4af22e679ef6 (diff) |
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"
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/qatest.yaml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/.github/workflows/qatest.yaml b/.github/workflows/qatest.yaml index f1835a4b7f..96ce672d4c 100644 --- a/.github/workflows/qatest.yaml +++ b/.github/workflows/qatest.yaml @@ -1,4 +1,4 @@ -name: Run QA Test # Runs automated tests on a self-hosted QA machine +name: Run QA Test # Runs automated tests on self-hosted QA machines permissions: contents: read @@ -10,17 +10,13 @@ on: - completed workflow_dispatch: inputs: - branch_name: - description: 'Branch name to simulate workflow (e.g. develop)' - required: true - default: 'develop' build_id: description: 'Build workflow run ID (e.g. For github.com/secondlife/viewer/actions/runs/1234567890 the ID is 1234567890)' required: true default: '14806728332' concurrency: - group: qa-test-run-${{ matrix.runner }} + group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: false # Prevents cancellation of in-progress jobs jobs: |