Skip to content

Commit

Permalink
Merge pull request #152 from ba-st/release-notifications
Browse files Browse the repository at this point in the history
Add automatic notification on release
  • Loading branch information
gcotelli committed Mar 11, 2020
2 parents 84e9ebf + 76b09ae commit db3a734
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/notify.yml
Original file line number Diff line number Diff line change
@@ -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 protected]
env:
SENDGRID_API_TOKEN: ${{ secrets.SENDGRID_API_TOKEN }}
RECIPIENTS_URL: ${{ secrets.RECIPIENTS_URL }}

0 comments on commit db3a734

Please sign in to comment.