Skip to content

Commit 433da8a

Browse files
authored
Create no-response.yml (#878)
* Create no-response * Rename no-response to no-response.yml
1 parent 75cbd5c commit 433da8a

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/no-response.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: No Response
2+
3+
# Both `issue_comment` and `scheduled` event types are required for this Action
4+
# to work properly.
5+
on:
6+
issue_comment:
7+
types: [created]
8+
schedule:
9+
# Schedule for five minutes after the hour, every hour
10+
- cron: '5 * * * *'
11+
12+
jobs:
13+
noResponse:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: lee-dohm/no-response@9bb0a4b5e6a45046f00353d5de7d90fb8bd773bb
17+
# This commit hash targets release v0.5.0 of lee-dohm/no-response.
18+
# Targeting a commit hash instead of a tag has been done for security reasons.
19+
# Please be aware that the commit hash specifically targets the "Automatic compilation"
20+
# done by `github-actions[bot]` as the `no-response` Action needs to be compiled.
21+
with:
22+
token: ${{ github.token }}
23+
daysUntilClose: 42
24+
responseRequiredLabel: 'awaiting-reply'
25+
closeComment: >
26+
This issue has been automatically closed because there has been no response
27+
to our request for more information from the original author. With only the
28+
information that is currently in the issue, we don't have the means
29+
to take action. Please reach out if you have or find the answers we need so
30+
that we can investigate further.

0 commit comments

Comments
 (0)