Skip to content

Commit

Permalink
chore: add workflow for closing incomplete issues (#2231)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgoss committed Feb 11, 2023
1 parent ca4118d commit cd50dc2
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: 'Close stale issues'

permissions:
issues: write
pull-requests: write

on:
schedule:
- cron: '30 1 * * *'

jobs:
incomplete-issues:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v7
with:
stale-issue-label: ':hourglass: stale'
stale-issue-message: 'This issue is stale because it has been open for 3 weeks with no activity. Remove the stale label or comment or this will be closed in another 5 days.'
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
only-issue-labels: ':baby_bottle: incomplete'
days-before-stale: 21
days-before-close: 5
days-before-pr-stale: -1
days-before-pr-close: -1

0 comments on commit cd50dc2

Please sign in to comment.