Skip to content

Commit

Permalink
ci: Add stale bot (#918)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdougal authored May 15, 2024
1 parent a96bde6 commit b5a17b0
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/stale-bot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'

permissions:
contents: write
issues: write
pull-requests: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: 'This issue is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 30 days.'
days-before-stale: 180
days-before-close: 30

0 comments on commit b5a17b0

Please sign in to comment.