From b2616ec65dc579891020d547ae9d70944a87a558 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 5 Sep 2021 18:33:41 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Action=20to=20comment=20on=20iss?= =?UTF-8?q?ues=20once=20released?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release-commenter.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/release-commenter.yml diff --git a/.github/workflows/release-commenter.yml b/.github/workflows/release-commenter.yml new file mode 100644 index 00000000..326888d9 --- /dev/null +++ b/.github/workflows/release-commenter.yml @@ -0,0 +1,18 @@ +# Adds a comment to all issues & PRs that were fixed on a new release +on: + release: + types: [published] +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: apexskier/github-release-commenter@v1 + with: + GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }} + label-template: đŸ›Šī¸ Released {release_tag}, 🔨 Fixed + comment-template: | + **The fix for this issue has now been released in {release_name} ✨** + + If you haven't done so already, please [update your instance](https://github.com/Lissy93/dashy/blob/master/docs/management.md#updating) to `{release_tag}` or later. See {release_link} for full info. + + Feel free to reach out if you need any more support. If you are enjoying Dashy, consider [supporting the project](https://github.com/Lissy93/dashy/blob/master/docs/contributing.md#contributing).