Skip to content

Commit

Permalink
Update stalebot settings (project-chip#36097)
Browse files Browse the repository at this point in the history
Do not close PRs nor Issues
Make the stale threshold to about 6 months, to match general release
cycle for CHIP. Even if this changes at some point to anually, this
still seems to be a more reasonable default if we actively triage and
manage issues and PRs.
  • Loading branch information
andy31415 authored Oct 16, 2024
1 parent b90334a commit 1000d7e
Showing 1 changed file with 6 additions and 16 deletions.
22 changes: 6 additions & 16 deletions .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,17 @@ jobs:
with:
stale-issue-message:
"This issue has been automatically marked as stale because
it has not had recent activity. It will be closed if no
further activity occurs. Remove stale label or comment or
this will be closed in 30 days."
it has not had recent activity."
stale-pr-message:
"This pull request has been automatically marked as stale
because it has not had recent activity. It will be closed
if no further activity occurs. Remove stale label or
comment or this will be closed in 10 days."
because it has not had recent activity."
close-issue-message:
"This stale issue has been automatically closed. Thank you
for your contributions."
close-pr-message:
"This stale pull request has been automatically closed.
Thank you for your contributions."
days-before-issue-stale: 30
days-before-issue-close: -1 # Don't close them for now
days-before-pr-stale: 90
days-before-pr-close: 10
exempt-issue-labels:
"security,blocked,cert blocker,build issue,Spec XML
align,CI/CD improvements,memory"
exempt-pr-labels:
"security,blocked,cert blocker,build issue,Spec XML
align,CI/CD improvements,memory"
days-before-issue-stale: 180
days-before-issue-close: -1 # Don't close stale issues
days-before-pr-stale: 180
days-before-pr-close: -1 # Don't close stale PRs

0 comments on commit 1000d7e

Please sign in to comment.