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

     1  name: issue-598
     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('Hello world', 'o1')"
    12          uses: actions/hello-world-javascript-action@main
    13          with:
    14            who-to-greet: 'Mona the Octocat'
    15        - name: My first true step
    16          if: "!endsWith('Hello world', 'od')"
    17          uses: actions/hello-world-javascript-action@main
    18          with:
    19            who-to-greet: "Renst the Octocat"
    20        - name: My second false step
    21          if: "endsWith('Hello world', 'o2')"
    22          uses: actions/hello-world-javascript-action@main
    23          with:
    24            who-to-greet: 'Act the Octocat'
    25        - name: My third false step
    26          if: "endsWith('Hello world', 'o2')"
    27          uses: actions/hello-world-javascript-action@main
    28          with:
    29            who-to-greet: 'Git the Octocat'
    30             
    31