Buildkite Changelog

What’s new and updated in Buildkite


New pipeline attribute: notify 🌟

Posted January 09, 2020 by Eleanor

Send notifications to email addresses, Basecamp Campfires, or Slack Channels with the new notify pipeline YAML attribute πŸ’Ž

Add as many notifications as you need for different teams or individuals alongside your pipeline steps in the notify YAML block:

steps:
  - command: test.sh
  - wait
  - command: build.sh

notify:
  - email: "coolthings@internet.com"
  - slack: "fish-space#general"

For more information about adding notify to your pipeline.yml file, check out the new Notifications guide πŸ’‘

Feature