diff --git a/.github/label-actions.yml b/.github/label-actions.yml new file mode 100644 index 000000000..3c9346e56 --- /dev/null +++ b/.github/label-actions.yml @@ -0,0 +1,16 @@ +# Configuration for Label Actions - https://github.com/dessant/label-actions + +'Type: Support': + comment: > + :wave: @{issue-author}, we use the issue tracker exclusively + for bug reports and feature requests. However, this issue appears + to be a support request. Please hop over onto our [Discord](https://radarr.video/discord). + close: true + close-reason: 'not planned' + +'Status: Logs Needed': + comment: > + :wave: @{issue-author}, In order to help you further we'll need to see logs. + You'll need to enable trace logging and replicate the problem that you encountered. + Guidance on how to enable trace logging can be found in + our [troubleshooting guide](https://wiki.servarr.com/radarr/troubleshooting#logging-and-log-files). \ No newline at end of file diff --git a/.github/workflows/label-actions.yml b/.github/workflows/label-actions.yml new file mode 100644 index 000000000..a7fc89446 --- /dev/null +++ b/.github/workflows/label-actions.yml @@ -0,0 +1,17 @@ +name: 'Label Actions' + +on: + issues: + types: [labeled, unlabeled] + +permissions: + contents: read + issues: write + +jobs: + action: + runs-on: ubuntu-latest + steps: + - uses: dessant/label-actions@v3 + with: + process-only: 'issues' diff --git a/.github/workflows/support.yml b/.github/workflows/support.yml deleted file mode 100644 index 79782f4d5..000000000 --- a/.github/workflows/support.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: 'Support requests' - -on: - issues: - types: [labeled, unlabeled, reopened] - -permissions: {} -jobs: - support: - permissions: - issues: write # to modify issues - - runs-on: ubuntu-latest - steps: - - uses: dessant/support-requests@v3 - with: - github-token: ${{ github.token }} - support-label: 'Type: Support' - issue-comment: > - :wave: @{issue-author}, we use the issue tracker exclusively - for bug reports and feature requests. However, this issue appears - to be a support request. Please hop over onto our [Discord](https://radarr.video/discord). - close-issue: true - close-reason: 'not planned' - lock-issue: false - - uses: dessant/support-requests@v3 - with: - github-token: ${{ github.token }} - support-label: 'Status: Logs Needed' - issue-comment: > - :wave: @{issue-author}, In order to help you further we'll need to see logs. - You'll need to enable trace logging and replicate the problem that you encountered. - Guidance on how to enable trace logging can be found in - our [troubleshooting guide](https://wiki.servarr.com/radarr/troubleshooting#logging-and-log-files). - close-issue: false - lock-issue: false