Files
languageservices/actions-workflow-parser/testdata/reader/errors-job-concurrency.yml
T
2023-01-06 15:54:31 -08:00

20 lines
411 B
YAML

include-source: false # Drop file/line/col from output
skip:
- TypeScript
---
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"
}
]
}