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.
2 parents 793b88a + 71610a3 commit 3705a1aCopy full SHA for 3705a1a
1 file changed
.github/workflows/no-response.yml
@@ -0,0 +1,20 @@
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
+ # Run daily at midnight.
10
+ - cron: '0 0 * * *'
11
12
+jobs:
13
+ noResponse:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: lee-dohm/no-response@v0.5.0
17
+ with:
18
+ token: ${{ github.token }}
19
+ daysUntilClose: 14
20
+ responseRequiredLabel: waiting-for-author
0 commit comments