github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/github/testdata/examples/step-continue-on-error.yaml (about) 1 # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepscontinue-on-error 2 3 name: example 4 5 jobs: 6 job1: 7 runs-on: ubuntu-20.04 8 steps: 9 - name: step1 10 run: echo continue on error 11 continue-on-error: true 12 - name: step2 13 run: echo do not continue on error 14 continue-on-error: false 15 - name: step3 16 run: echo step3