drone-plugins / drone-slack

Drone plugin for sending Slack notifications
http://plugins.drone.io/drone-plugins/drone-slack
Apache License 2.0
61 stars 80 forks source link

Only send notifications on if one of a set of specific steps fails #147

Open foosinn opened 1 year ago

foosinn commented 1 year ago

Drone exposes the failed steps in DRONE_FAILED_STEPS.

Using this the extension could provide a very simply way to only alert if certain steps fail.

  image: plugins/slack
  name: notify
  settings:
    webhook:
      from_secret: slack_webhook_url
    build_steps:
      - test
      - e2e-test
      - integration-test
  when:
    status:
    - failure