We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7533010 commit a65356dCopy full SHA for a65356d
.github/workflows/no-response.yml
@@ -0,0 +1,18 @@
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@v0.5.0
17
+ with:
18
+ token: ${{ github.token }}
.gitignore
@@ -14,3 +14,4 @@ doc/api/*/
.flutter-plugins-dependencies
.fvm
*.iml
+.dccache
0 commit comments