From c63c728a8cf1acc33dbf797dce2320555912eadc Mon Sep 17 00:00:00 2001 From: Nick Veitch Date: Mon, 24 Mar 2025 11:22:12 +0000 Subject: [PATCH] Add action to redirect support requests (#3009) --- .github/workflows/support.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/support.yml diff --git a/.github/workflows/support.yml b/.github/workflows/support.yml new file mode 100644 index 000000000..abd75a1b3 --- /dev/null +++ b/.github/workflows/support.yml @@ -0,0 +1,30 @@ +name: 'Support Requests' + +on: + issues: + types: [labeled, unlabeled, reopened] + +permissions: + issues: write + +jobs: + action: + runs-on: ubuntu-latest + steps: + - uses: dessant/support-requests@47d5ea12f6c9e4a081637de9626b7319b415a3bf + with: + github-token: ${{ github.token }} + support-label: 'support' + issue-comment: > + :wave: @{issue-author}. Sorry you are having a problem! + This repository is for the n8n documentation though. Having + looked at your issue we think you'd get quicker help with your + problem by [posting on the community forum](https://community.n8n.io/c/questions/12), + where experts from n8n and our community can provide answers + to your questions. + If you think this issue is specifically to do with the documentation, + please re-open and explain what you would like to see in docs to resolve it. + close-issue: true + issue-close-reason: 'not planned' + lock-issue: false + issue-lock-reason: 'off-topic'