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

     1  kind: pipeline
     2  spec:
     3    stages:
     4    - name: build
     5      spec:
     6        steps:
     7        - name: Alert Opsgenie
     8          spec:
     9            run: echo "Sending an alert through Opsgenie"
    10          type: script
    11        - name: Alert Opsgenie1
    12          spec:
    13            image: atlassian/opsgenie-send-alert:latest
    14            with:
    15              DESCRIPTION: An Opsgenie alert sent from Bitbucket Pipelines
    16              GENIE_KEY: $GENIE_KEY
    17              MESSAGE: Danger, Will Robinson!
    18              PRIORITY: P1
    19              SOURCE: Bitbucket Pipelines
    20          type: plugin
    21      type: ci
    22  version: 1