File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 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.
You can’t perform that action at this time.
0 commit comments