Skip to content

Commit 466495b

Browse files
committed
🔧 Add issue-manager GitHub action
1 parent 2f04b78 commit 466495b

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/main.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
on:
2+
schedule:
3+
- cron: "0 0 * * *"
4+
5+
jobs:
6+
issue-manager:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: tiangolo/issue-manager@master
10+
with:
11+
token: ${{ secrets.GITHUB_TOKEN }}
12+
config: >
13+
{
14+
"answered": {
15+
"users": ["tiangolo"],
16+
"delay": 864000,
17+
"message": "Assuming the original issue was solved, it will be automatically closed now. But feel free to add more comments or create new issues."
18+
}
19+
}

0 commit comments

Comments
 (0)