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 }}