Files
nats-server/.github/workflows/stale-issues.yaml
Byron Ruth f764853e00 Disable auto-closing, increase stale threshold
Signed-off-by: Byron Ruth <byron@nats.io>
2023-05-15 09:14:31 -04:00

22 lines
590 B
YAML

name: stale-issues
on:
schedule:
- cron: "30 1 * * *"
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
debug-only: true # Set until the behavior is tuned.
days-before-stale: 56 # Mark stale after 8 weeks (56 days) of inactivity
days-before-close: -1 # Disable auto-closing
exempt-all-milestones: true # Any issue/PR within a milestone will be omitted
#exempt-assigness: "foo,bar" # Exempt issues/PRs assigned to particular users