diff --git a/.github/support.yml b/.github/support.yml deleted file mode 100644 index 46594eef22..0000000000 --- a/.github/support.yml +++ /dev/null @@ -1,23 +0,0 @@ -# Configuration for support-requests - https://github.com/dessant/support-requests - -# Label used to mark issues as support requests -supportLabel: support -# Comment to post on issues marked as support requests. Add a link -# to a support page, or set to `false` to disable -supportComment: > - 👋 We use the issue tracker exclusively for bug reports and feature requests. - However, this issue appears to be a support request. Please use our - [support channels](https://github.com/kivy/python-for-android/blob/master/README.md#support) - to get help with the project. - - - If you're having trouble installing or using python-for-android, - maybe you could be interested in our [quickstart](https://python-for-android.readthedocs.io/en/latest/quickstart) guide. - - - Let us know if this comment was made in error, and we'll be happy - to reopen the issue. -# Whether to close issues marked as support requests -close: true -# Whether to lock issues marked as support requests -lock: false \ No newline at end of file diff --git a/.github/workflows/support.yml b/.github/workflows/support.yml new file mode 100644 index 0000000000..2907000010 --- /dev/null +++ b/.github/workflows/support.yml @@ -0,0 +1,32 @@ +name: 'Support Requests' + +on: + issues: + types: [labeled, unlabeled, reopened] + +permissions: + issues: write + +jobs: + action: + runs-on: ubuntu-latest + steps: + - uses: dessant/support-requests@v2 + with: + github-token: ${{ github.token }} + support-label: 'support' + issue-comment: > + 👋 We use the issue tracker exclusively for bug reports and feature requests. + However, this issue appears to be a support request. Please use our + [support channels](https://github.com/kivy/python-for-android/blob/master/README.md#support) + to get help with the project. + + + If you're having trouble installing or using python-for-android, + maybe you could be interested in our [quickstart](https://python-for-android.readthedocs.io/en/latest/quickstart) guide. + + + Let us know if this comment was made in error, and we'll be happy + to reopen the issue. + close-issue: true + lock-issue: false \ No newline at end of file