github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/bitbucket/testdata/steps/example15.yaml (about) 1 # Example using the runs-on option to run a step on a self-hosted runner 2 3 pipelines: 4 default: 5 - step: 6 name: Step 1 7 runs-on: 8 - "self.hosted" 9 - "my.custom.label" 10 script: 11 - echo "This step will run on a self-hosted runner with the 'my.custom.label' and 'self.hosted' labels."; 12 - step: 13 name: Step 2 14 script: 15 - echo "This step will run on Atlassian's infrastructure as usual.";