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 d00a7cf commit 6cb12ddCopy full SHA for 6cb12dd
.github/workflows/noresponse.yml
@@ -0,0 +1,21 @@
1
+name: No Response
2
+
3
+# Both `issue_comment` and `schedule` event types are required for this Action
4
+# to work properly.
5
+# Details here: https://github.com/lee-dohm/no-response/blob/main/action.yml
6
+on:
7
+ issue_comment:
8
+ types: [created]
9
+ schedule:
10
+ # Schedule for 00:00 UTC every day
11
+ - cron: '0 0 * * *'
12
13
+jobs:
14
+ noResponse:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: lee-dohm/[email protected]
18
+ with:
19
+ token: ${{ github.token }}
20
+ daysUntilClose: 30
21
+ responseRequiredLabel: question
0 commit comments