github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/bitbucket/testdata/steps/example8.yaml.golden (about)

     1  kind: pipeline
     2  spec:
     3    stages:
     4    - name: build
     5      spec:
     6        steps:
     7        - name: Build app
     8          spec:
     9            run: sh ./build-app.sh
    10          type: script
    11        - name: Run unit tests
    12          spec:
    13            run: sh ./run-tests.sh
    14          type: script
    15      type: ci
    16    - name: build
    17      spec:
    18        steps:
    19        - name: plugin
    20          spec:
    21            image: atlassian/slack-notify:latest
    22            with:
    23              MESSAGE: Hello, Slack!!
    24              PRETEXT: Hello, Slack!
    25              WEBHOOK_URL: $SLACK_WEBHOOK
    26          type: plugin
    27      type: ci
    28  version: 1