Skip to content
mail

GitHub Action

Hecate Dispatch

v1.0.1 Latest version

Hecate Dispatch

mail

Hecate Dispatch

Sends emails to stakeholders when pull requests are merged

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Hecate Dispatch

uses: hecateapp/dispatch-action@v1.0.1

Learn more about this action in hecateapp/dispatch-action

Choose a version

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/dispatch-action@v1.0.1"
  secrets = ["GITHUB_TOKEN"]
  env = {
    EMAILS = "your.email@some.domain, another.email@some.domain"
  }
}