Skip to content

Commit

Permalink
Merge pull request desktop#14762 from desktop/actions-no-response
Browse files Browse the repository at this point in the history
Add Actions no-response workflow
  • Loading branch information
steveward authored Jun 9, 2022
2 parents f36a893 + d9d4384 commit 08a7eed
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 16 deletions.
16 changes: 0 additions & 16 deletions .github/no-response.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/no-response.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: No Response

# Both `issue_comment` and `scheduled` event types are required for this Action
# to work properly.
on:
issue_comment:
types: [created]
schedule:
# Schedule for five minutes after the hour, every hour
- cron: '5 * * * *'

permissions:
issues: write

jobs:
noResponse:
runs-on: ubuntu-latest
steps:
- uses: lee-dohm/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
closeComment: >
Thank you for your issue!
We haven’t gotten a response to our questions above. With only the
information that is currently in the issue, we don’t have enough
information to take action. We’re going to close this but don’t
hesitate to reach out if you have or find the answers we need. If
you answer our questions above, this issue will automatically
reopen.
daysUntilClose: 7

0 comments on commit 08a7eed

Please sign in to comment.