github.com/nektos/act@v0.2.63/pkg/runner/testdata/issue-597/spelling.yaml (about)

     1  name: issue-597
     2  on: push
     3  
     4  
     5  jobs:
     6    my_first_job:
     7  
     8      runs-on: ubuntu-latest
     9      steps:
    10        - name: My first false step
    11          if: "endsWith('Should not', 'o1')"
    12          uses: actions/checkout@v2.0.0
    13          with:
    14            ref: refs/pull/${{github.event.pull_request.number}}/merge
    15            fetch-depth: 5
    16        - name: My first true step
    17          if: ${{endsWith('Hello world', 'ld')}}
    18          uses: actions/hello-world-javascript-action@main
    19          with:
    20            who-to-greet: "Renst the Octocat"
    21        - name: My second false step
    22          if: "endsWith('Should not evaluate', 'o2')"
    23          uses: actions/checkout@v2.0.0
    24          with:
    25            ref: refs/pull/${{github.event.pull_request.number}}/merge
    26            fetch-depth: 5
    27        - name: My third false step
    28          if: ${{endsWith('Should not evaluate', 'o3')}}
    29          uses: actions/checkout@v2.0.0
    30          with:
    31            ref: refs/pull/${{github.event.pull_request.number}}/merge
    32            fetch-depth: 5