Skip to content

Commit

Permalink
Merge pull request #989 from neXenio/add-housekeeping
Browse files Browse the repository at this point in the history
chore(gh-actions): Add housekeeping action to close stale issues
  • Loading branch information
ademariag authored Oct 1, 2023
2 parents 3091e71 + a9354b5 commit 57a831a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/housekeeping.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: 'Housekeeping'
on:
schedule:
- cron: '0 0 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
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 7 days.'
close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity. Please reopen the issue, if this happened accidently.'
days-before-issue-stale: 90
day-before-pr-stale: -1
days-before-close: 7
days-before-pr-close: -1

0 comments on commit 57a831a

Please sign in to comment.