Skip to content

Commit

Permalink
ci: added stale bot
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniomuso committed Feb 8, 2024
1 parent a735e4f commit f86547d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'

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

0 comments on commit f86547d

Please sign in to comment.