Skip to content

No Response

No Response #35

Workflow file for this run

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