Files

26 lines
929 B
YAML
Raw Permalink Normal View History

2023-02-01 15:48:19 -08:00
include-source: false # Drop file/line/col from output
2023-02-17 18:36:00 -05:00
skip:
- TypeScript
2023-02-01 15:48:19 -08:00
---
on: push
jobs:
run:
runs-on: ubuntu-latest
env:
bad_insert1: "This is a bad ${{ insert }}"
bad_insert2: "${{ insert }} are bad at the beginning"
${{ insert }}: ${{ github.ref }}
steps:
- run: echo hi
---
{
"errors": [
{
"Message": ".github/workflows/errors-insert.yml (Line: 6, Col: 20): The directive 'insert' is not allowed in this context. Directives are not supported for expressions that are embedded within a string. Directives are only supported when the entire value is an expression."
},
{
"Message": ".github/workflows/errors-insert.yml (Line: 7, Col: 20): The directive 'insert' is not allowed in this context. Directives are not supported for expressions that are embedded within a string. Directives are only supported when the entire value is an expression."
}
]
}