No Response #55
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
name: No Response | |
# Both `issue_comment` and `scheduled` event types are required for this Action | |
# to work properly. | |
# This action helps us flag issues for more information. | |
# To trigger, add the `more-information-needed` label to an issue. | |
# The label will be removed if the author comments. | |
# If the author does not respond for a specific number of days, the issue will be automatically closed. | |
# However, if they do respond, the issue will be re-opened automatically and the label will be removed. | |
on: | |
issue_comment: | |
types: [created] | |
schedule: | |
- cron: '0 0 * * *' # Runs at 12:00 AM UTC every day | |
jobs: | |
noResponse: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: lee-dohm/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
daysUntilClose: 10 |