Skip to content

Instantly share code, notes, and snippets.

@Geek-ubaid
Created May 19, 2020 20:01
Show Gist options
  • Save Geek-ubaid/f302022750c686d98e822efe805640ba to your computer and use it in GitHub Desktop.
Save Geek-ubaid/f302022750c686d98e822efe805640ba to your computer and use it in GitHub Desktop.

Notify about github action builds on slack

- name: Notify slack success
  if: success()
  env:
    SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
  uses: voxmedia/github-action-slack-notify-build@v1
  with:
    channel: build-notifs
    status: SUCCESS
    color: good

- name: Notify slack fail
  if: failure()
  env:
    SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
  uses: voxmedia/github-action-slack-notify-build@v1
  with:
    channel: build-notifs
    status: FAILED
    color: danger
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment