Skip to content

Commit

Permalink
admin: Alert slack "release-announcements" channel upon OIIO release (A…
Browse files Browse the repository at this point in the history
…cademySoftwareFoundation#4002)

Add a GHA workflow that is triggered up on drafting a release, which
will echo a notice to the ASWF slack #release-announcements channel.

Signed-off-by: Larry Gritz <[email protected]>
  • Loading branch information
lgritz committed Oct 7, 2023
1 parent 3ec28f0 commit 82a4f9a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release-notice.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Publish Release Notice to ASWF Slack

on:
release:
types:
- published
# published should cover both 'released' and 'prereleased'

jobs:
publish:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Notify Slack
id: slack
with:
slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_RELEASES_URL }}
uses: fedecalendino/[email protected]

0 comments on commit 82a4f9a

Please sign in to comment.