Files
languageservices/actions-workflow-parser/testdata/reader/errors-job-concurrency.yml
T
2023-02-17 18:36:00 -05:00

18 lines
390 B
YAML

include-source: false # Drop file/line/col from output
---
on: push
jobs:
build:
runs-on: ubuntu-latest
concurrency: ${{ secrets.foo }}
steps:
- run: echo hi
---
{
"errors": [
{
"Message": ".github/workflows/errors-job-concurrency.yml (Line: 5, Col: 18): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.foo"
}
]
}