helm/.github/workflows/stale-issue-bot.yaml
Joe Julian 209d44c12f
don't mark issues as stale where a PR is in progress
Signed-off-by: Joe Julian <me@joejulian.name>
2023-02-09 09:37:51 -08:00

16 lines
567 B
YAML

name: "Close stale issues"
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3.0.14
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been marked as stale because it has been open for 90 days with no activity. This thread will be automatically closed in 30 days if no further activity occurs.'
exempt-issue-labels: 'keep open,v4.x,in progress'
days-before-stale: 90
days-before-close: 30
operations-per-run: 100