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