From fa6d304f1ddb38facdcc134591318f59a5f91426 Mon Sep 17 00:00:00 2001 From: Cary Phillips Date: Tue, 19 Dec 2023 11:54:11 -0800 Subject: [PATCH] GitHub action for release notices on Slack Signed-off-by: Cary Phillips --- .github/workflows/release-notice.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/release-notice.yml diff --git a/.github/workflows/release-notice.yml b/.github/workflows/release-notice.yml new file mode 100644 index 0000000000..8cfe2b018b --- /dev/null +++ b/.github/workflows/release-notice.yml @@ -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 + \ No newline at end of file