github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/bitbucket/yaml/testdata/steps/example11.yaml (about) 1 # Example using trigger to set a stage to manual 2 3 pipelines: 4 default: 5 - stage: 6 name: Linting 7 steps: 8 - step: 9 script: 10 - sh ./run-linter.sh 11 - stage: 12 name: Build and test 13 trigger: manual 14 steps: 15 - step: 16 name: Build app 17 script: 18 - sh ./build-app.sh 19 - step: 20 name: Run unit tests 21 script: 22 - sh ./run-tests.sh