From 76b09ae636c46ddfabdec82050a879e56ae540af Mon Sep 17 00:00:00 2001 From: Gabriel Omar Cotelli Date: Wed, 11 Mar 2020 11:40:25 -0300 Subject: [PATCH] Add automatic notification on release --- .github/workflows/notify.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/notify.yml diff --git a/.github/workflows/notify.yml b/.github/workflows/notify.yml new file mode 100644 index 00000000..6fa097ff --- /dev/null +++ b/.github/workflows/notify.yml @@ -0,0 +1,15 @@ +name: Release Notifications + +on: + release: + types: [published] + +jobs: + notify: + runs-on: ubuntu-latest + steps: + - name: Notify about a new release + uses: ba-st-actions/email-release-notification@v2.0.0 + env: + SENDGRID_API_TOKEN: ${{ secrets.SENDGRID_API_TOKEN }} + RECIPIENTS_URL: ${{ secrets.RECIPIENTS_URL }}