Skip to content

Commit

Permalink
Merge pull request kuberhealthy#1195 from kuberhealthy/jonwinton/stal…
Browse files Browse the repository at this point in the history
…e-issues-gha

Add Stale Issue Closing GitHub Action
  • Loading branch information
integrii authored Jan 25, 2024
2 parents 0b8d01c + e1c4fa1 commit 952ef55
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 and PRs'
on:
schedule:
- cron: '0 0 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment on the issue or this will be closed in 15 days.'
close-issue-message: 'This issue was closed because it has been stalled for 15 days with no activity. Please reopen and comment on the issue if you believe it should stay open.'
days-before-stale: 30
days-before-close: 15
exempt-issue-labels: 'in progress, do-not-close'

0 comments on commit 952ef55

Please sign in to comment.