From d8dbf6a06756b7645c9186511a1c9f9549dc6c51 Mon Sep 17 00:00:00 2001 From: "Siddharth Gelera (reaper)" Date: Mon, 8 Jul 2024 11:55:53 +0530 Subject: [PATCH] Create release-notify --- .github/workflows/release-notify | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/release-notify diff --git a/.github/workflows/release-notify b/.github/workflows/release-notify new file mode 100644 index 0000000..8379f60 --- /dev/null +++ b/.github/workflows/release-notify @@ -0,0 +1,18 @@ +name: notify-release +on: + workflow_dispatch: + release: + types: [published] + issues: + types: [closed] + schedule: + - cron: '30 8 * * *' +jobs: + setup: + runs-on: ubuntu-latest + permissions: + issues: write + contents: read + steps: + - name: Notify release + uses: nearform-actions/github-action-notify-release@v1