diff options
Diffstat (limited to 'pkg/runner/testdata/issue-598/spelling.yml')
-rw-r--r-- | pkg/runner/testdata/issue-598/spelling.yml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/pkg/runner/testdata/issue-598/spelling.yml b/pkg/runner/testdata/issue-598/spelling.yml new file mode 100644 index 0000000..65255f9 --- /dev/null +++ b/pkg/runner/testdata/issue-598/spelling.yml @@ -0,0 +1,31 @@ +name: issue-598 +on: push + + +jobs: + my_first_job: + + runs-on: ubuntu-latest + steps: + - name: My first false step + if: "endsWith('Hello world', 'o1')" + uses: actions/hello-world-javascript-action@main + with: + who-to-greet: 'Mona the Octocat' + - name: My first true step + if: "!endsWith('Hello world', 'od')" + uses: actions/hello-world-javascript-action@main + with: + who-to-greet: "Renst the Octocat" + - name: My second false step + if: "endsWith('Hello world', 'o2')" + uses: actions/hello-world-javascript-action@main + with: + who-to-greet: 'Act the Octocat' + - name: My third false step + if: "endsWith('Hello world', 'o2')" + uses: actions/hello-world-javascript-action@main + with: + who-to-greet: 'Git the Octocat' + +
\ No newline at end of file |