github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/circle/testdata/orbs/slack-example2.yaml.golden (about) 1 kind: pipeline 2 spec: 3 stages: 4 - name: test 5 spec: 6 platform: 7 arch: amd64 8 os: linux 9 runtime: 10 spec: {} 11 type: cloud 12 steps: 13 - spec: 14 image: cimg/base:stable 15 run: |- 16 set -eo pipefail 17 echo "test my app" 18 shell: bash 19 type: script 20 type: ci 21 - name: slack/on-hold 22 spec: 23 platform: 24 arch: amd64 25 os: linux 26 runtime: 27 spec: {} 28 type: cloud 29 steps: 30 - name: circleci/slack 31 spec: 32 run: echo unable to convert orb circleci/slack/on-hold 33 type: script 34 type: ci 35 - name: deploy 36 spec: 37 platform: 38 arch: amd64 39 os: linux 40 runtime: 41 spec: {} 42 type: cloud 43 steps: 44 - spec: 45 image: cimg/base:stable 46 run: |- 47 set -eo pipefail 48 echo "deploy my app" 49 shell: bash 50 type: script 51 - name: notify_slack 52 spec: 53 image: plugins/slack 54 with: 55 recipient: '@EngineeringTeam' 56 template: basic_fail_1 57 type: plugin 58 - name: notify_slack 59 spec: 60 image: plugins/slack 61 with: 62 template: success_tagged_deploy_1 63 type: plugin 64 type: ci 65 version: 1