Skip to content

Commit

Permalink
Merge pull request #2348 from AxonFramework/slack-release-annoucement
Browse files Browse the repository at this point in the history
Added Slack release announcement
  • Loading branch information
smcvb committed Sep 7, 2022
2 parents 019d97a + 379f8f4 commit 91b9751
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/slack-release-notification.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Announce release on Slack

on:
# Triggers the workflow on new release
release:
types: [ published ]

jobs:
slackNotification:
name: Slack Notification
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Slack Notification
uses: rtCamp/action-slack-notify@v2
with:
release-name: ${{ github.event.release.name }}
release-body: ${{ github.event.release.body }}
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}

0 comments on commit 91b9751

Please sign in to comment.