Skip to content

Commit a987275

Browse files
authored
Add stale issue bot
1 parent 0f9f0c3 commit a987275

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/bot_stale.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: "Close stale issues"
2+
on:
3+
schedule:
4+
- cron: "30 12 * * *"
5+
jobs:
6+
stale:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/stale@v1
10+
with:
11+
repo-token: ${{ secrets.GITHUB_TOKEN }}
12+
stale-issue-message: 'This issue has been marked as stale because it has not had recent activity. The bot will close the issue if no further action occurs.'
13+
days-before-stale: 30
14+
days-before-close: 5

0 commit comments

Comments
 (0)