We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7b0421 commit 0476bc7Copy full SHA for 0476bc7
1 file changed
.github/workflows/no-response.yml
@@ -0,0 +1,19 @@
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/[email protected]
17
+ with:
18
+ token: ${{ github.token }}
19
+ daysUntilClose: 14
0 commit comments