From fbb736cae783a435629cc8763a2c8e7da41b726a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Dan?= Date: Wed, 14 Jun 2023 17:26:17 -0400 Subject: [PATCH] ci: add release pipeline workflow (#7) --- .github/workflows/release-pipeline.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/release-pipeline.yml diff --git a/.github/workflows/release-pipeline.yml b/.github/workflows/release-pipeline.yml new file mode 100644 index 0000000..4295fcb --- /dev/null +++ b/.github/workflows/release-pipeline.yml @@ -0,0 +1,20 @@ +name: Release Pipeline + +on: + release: + types: [created] + +jobs: + notification: + runs-on: ubuntu-latest + steps: + - name: Send Slack notification + uses: slackapi/slack-github-action@v1.23.0 + with: + payload: | + { + "repository": "${{ github.repository }}", + "version": "${{ github.ref }}" + } + env: + SLACK_WEBHOOK_URL: ${{ vars.RELEASE_PIPELINE_SLACK_WEBHOOK_URL }}