Skip to content

Commit

Permalink
ci: workflow to notify slack on release
Browse files Browse the repository at this point in the history
  • Loading branch information
ivivanov committed Feb 14, 2023
1 parent 7fa4fb1 commit b435c00
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/slack-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Notify Slack on Release

on:
release:
types: [published, unpublished, created, edited, deleted, prereleased, released]

jobs:
notify_slack:
environment: dev chain
runs-on: ubuntu-latest
name: Notify Slack on Release
steps:
- name: Notify Slack on Release
uses: instantish/notify-slack-on-release@v1.3.0
with:
slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }}

0 comments on commit b435c00

Please sign in to comment.