github.com/nektos/act@v0.2.63/pkg/runner/testdata/steps-context/conclusion/push.yml (about)

     1  name: conclusion
     2  on: push
     3  
     4  jobs:
     5    check:
     6      runs-on: ubuntu-latest
     7      steps:
     8        - id: first
     9          run: exit 0
    10        - id: second
    11          continue-on-error: true
    12          run: exit 1
    13        - run: echo '${{ steps.first.conclusion }}' | grep 'success'
    14        - run: echo '${{ steps.second.conclusion }}' | grep 'success'