Skip to content

Commit a65356d

Browse files
author
Sebastian Roth
authoredOct 29, 2021
add no-response bot (fluttercommunity#340)
1 parent 7533010 commit a65356d

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
 

‎.github/workflows/no-response.yml

+18
Original file line numberDiff line numberDiff line change
@@ -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

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ doc/api/*/
1414
.flutter-plugins-dependencies
1515
.fvm
1616
*.iml
17+
.dccache

0 commit comments

Comments
 (0)
Please sign in to comment.