github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/circle/testdata/orbs/slack-example3.yaml (about)

     1  version: 2.1
     2  
     3  orbs:
     4    slack: circleci/slack@4.1
     5  
     6  jobs:
     7    notify:
     8      docker:
     9        - image: cimg/base:stable
    10      steps:
    11      - slack/notify:
    12          channel: channel
    13          color: '#C02B2B'
    14          message: some message
    15          webhook: webhook
    16  workflows:
    17    send-notification:
    18      jobs:
    19        - notify:
    20            context: slack-secrets
    21