From ab8809ddeab2e1ce7df77d7f0140ba9879cf3710 Mon Sep 17 00:00:00 2001 From: Core Date: Mon, 26 Dec 2022 21:15:00 -0400 Subject: [PATCH] added support notice auto reply --- .github/workflows/support-notice.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/support-notice.yml diff --git a/.github/workflows/support-notice.yml b/.github/workflows/support-notice.yml new file mode 100644 index 00000000..d3f6237e --- /dev/null +++ b/.github/workflows/support-notice.yml @@ -0,0 +1,18 @@ +name: Support Notice + +on: + issues: + types: [opened] + +jobs: + post-notice: + runs-on: ubuntu-latest + + steps: + - uses: derekprior/add-autoresponse@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + respondableId: ${{ github.event.issue.node_id }} + response: "Support for Cider 1.0 is in a reduced state. Do not expect replies or acknowledgement for issues that do not break full functionality of the app (Media playback, plugin functionality etc.).\n\nIf you are interested in joining the Cider 2 open alpha, you can join our Discord [here](https://discord.gg/AppleMusic)." + author: ${{ github.event.issue.user.login }} \ No newline at end of file