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 d18c0cd commit e95d6e1Copy full SHA for e95d6e1
1 file changed
.github/workflows/no-response.yml
@@ -0,0 +1,22 @@
1
+# Automatically closes issues if a response was not received for requested information
2
+# https://github.com/lee-dohm/no-response
3
+
4
+name: no-response
5
6
+# Both `issue_comment` and `scheduled` event types are required for this Action
7
+# to work properly.
8
+on:
9
+ issue_comment:
10
+ types: [created]
11
+ schedule:
12
+ # Once a day, at 12:15 UTC
13
+ - cron: '15 12 * * *'
14
15
+jobs:
16
+ noResponse:
17
+ runs-on: ubuntu-20.04
18
+ steps:
19
+ - uses: lee-dohm/no-response@v0.5.0
20
+ with:
21
+ token: ${{ secrets.GITHUB_TOKEN }}
22
+ responseRequiredLabel: "status: waiting-for-feedback"
0 commit comments