Skip to content

Commit

Permalink
[issues] add bot to close stale issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaine committed Jul 18, 2022
1 parent 30c5242 commit c758b4d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: issues
on:
schedule:
- cron: '30 1 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v5
with:
stale-issue-label: stale
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
days-before-stale: 120
days-before-close: 14
days-before-pr-stale: -1
days-before-pr-close: -1

0 comments on commit c758b4d

Please sign in to comment.