Skip to content

GitHub action for free deploy/merge emails to stakeholders

Notifications You must be signed in to change notification settings

hecateapp/dispatch-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hecate Dispatch via GitHub Action

GitHub action to send emails notifying of merged pull requests. Super handy for keeping your stakeholders who aren't on GitHub informed of releases.

Free version limited to 5 emails per user/organization per day.

Pro version is a GitHub app with no notification limits, allows org wide (rather than per repo) configuration, can do daily rollup newsletters, notify via slack, and more.

Learn more on the Hecate Dispatch product page

Setup

Example workflow:

workflow "Email stakeholders on release" {
  on = "pull_request"
  resolves = ["hecateapp/dispatch-action"]
}

action "hecateapp/dispatch-action" {
  uses = "hecateapp/[email protected]"
  secrets = ["GITHUB_TOKEN"]
  env = {
    EMAILS = "[email protected], [email protected]"
  }
}