From 3112e5fb1558729d0bb4524752e3435876cee05a Mon Sep 17 00:00:00 2001 From: Niklas Merz Date: Wed, 11 Aug 2021 09:04:14 +0200 Subject: [PATCH] chore: add release notify action (#654) Co-authored-by: Erisu --- .github/workflows/release-notify.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/release-notify.yml diff --git a/.github/workflows/release-notify.yml b/.github/workflows/release-notify.yml new file mode 100644 index 0000000..d9a76f1 --- /dev/null +++ b/.github/workflows/release-notify.yml @@ -0,0 +1,13 @@ +name: Close issue asking for release + +on: + issues: + types: [opened] + +jobs: + action-test: + runs-on: ubuntu-latest + steps: + - uses: niklasmerz/release-notify@master + with: + repo-token: ${{ secrets.GITHUB_TOKEN }}