disable option for registering multiple times for the same events with one e-mail #566
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow comments on and closes issues labeled as support requests. | |
name: 'Support Requests' | |
on: | |
issues: | |
types: [labeled, unlabeled, reopened] | |
jobs: | |
action: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: dessant/support-requests@v2 | |
with: | |
github-token: ${{ secrets.GH_ACTIONS_ACCESS_TOKEN }} | |
# Label used to mark issues as support requests | |
support-label: 'category:support' | |
# Comment to post on issues marked as support requests. Add a link to the support page | |
issue-comment: > | |
Hello @{issue-author}! 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 forums](https://eventespresso/support/forums) to get help with the project. | |
# Whether to close issues marked as support requests | |
close-issue: true | |
lock-issue: false |