Skip to content

Commit

Permalink
GitHub action for release notices on Slack
Browse files Browse the repository at this point in the history
Signed-off-by: Cary Phillips <[email protected]>
  • Loading branch information
cary-ilm committed Dec 19, 2023
1 parent e9400ca commit fa6d304
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release-notice.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
jobs:
publish:
runs-on: ubuntu-latest
timeout-minutes: 5

steps:
- name: 'Notify Slack #release-announcements'
id: slack1
with:
project_name: "OpenEXR"
slack_bot_token: ${{ secrets.SLACK_BOT_TOKEN }}
slack_channel: "#release-announcements"
project_logo: "https://artwork.aswf.io/other/aswf/text/aqua/aswf-text-aqua.png"
uses: jmertic/slack-release-notifier@main

- name: 'Notify Slack #openexr'
id: slack2
with:
project_name: "OpenEXR"
slack_bot_token: ${{ secrets.SLACK_BOT_TOKEN }}
slack_channel: "#openexr"
project_logo: "https://artwork.aswf.io/other/aswf/text/aqua/aswf-text-aqua.png"
uses: jmertic/slack-release-notifier@main

0 comments on commit fa6d304

Please sign in to comment.