github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/bitbucket/yaml/testdata/steps/example15.yaml.golden (about) 1 { 2 "pipelines": { 3 "default": [ 4 { 5 "step": { 6 "name": "Step 1", 7 "runs-on": [ 8 "self.hosted", 9 "my.custom.label" 10 ], 11 "script": [ 12 "echo \"This step will run on a self-hosted runner with the 'my.custom.label' and 'self.hosted' labels.\";" 13 ] 14 } 15 }, 16 { 17 "step": { 18 "name": "Step 2", 19 "script": [ 20 "echo \"This step will run on Atlassian's infrastructure as usual.\";" 21 ] 22 } 23 } 24 ] 25 } 26 }