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"
master
AtlasLinden 2025-05-06 11:02:57 -07:00 committed by GitHub
parent 0fb4e04107
commit 2c176c75fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 6 deletions

View File

@ -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: