Skip to content

Commit

Permalink
Add automatic issue close mechanism
Browse files Browse the repository at this point in the history
  • Loading branch information
mczachurski committed Oct 23, 2024
1 parent 9e09310 commit 922469f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 'Close stale issues'
on:
schedule:
- cron: '30 3 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
any-of-labels: 'stale'
days-before-stale: -1
days-before-close: 7
days-before-pr-close: -1
close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.'

0 comments on commit 922469f

Please sign in to comment.