diff options
| author | Max Isom <[email protected]> | 2022-03-10 13:01:24 -0500 |
|---|---|---|
| committer | Max Isom <[email protected]> | 2022-03-10 13:01:24 -0500 |
| commit | 519dcc5d99dc41a1c9eba082dc7108483e5ab39c (patch) | |
| tree | d21fb3a88ca06302617f5e04110fd84aa8654bb7 | |
| parent | cd70e027d8628138fd43dcd43ee5d6a611dd6999 (diff) | |
| download | muse-519dcc5d99dc41a1c9eba082dc7108483e5ab39c.tar.xz muse-519dcc5d99dc41a1c9eba082dc7108483e5ab39c.zip | |
Add release comment workflow
| -rw-r--r-- | .github/workflows/release-comment.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/release-comment.yml b/.github/workflows/release-comment.yml new file mode 100644 index 0000000..ab042ac --- /dev/null +++ b/.github/workflows/release-comment.yml @@ -0,0 +1,13 @@ +on: + release: + types: [published] + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: apexskier/github-release-commenter@v1 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + comment-template: | + 🚀 Released in {release_link}. |
