Skip to content

Commit

Permalink
chore: add stale issues workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Ffloriel committed Feb 27, 2022
1 parent 1ae4a5e commit 9004fb0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/stale-issues.yml
@@ -0,0 +1,18 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 0 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
stale-issue-message: 'This issue is stale because it has been open 90 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 90 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
days-before-stale: 90
days-before-close: 5
exempt-all-issue-assignees: true
exempt-all-issue-milestones: true
exempt-issue-labels: bug

0 comments on commit 9004fb0

Please sign in to comment.