Skip to content

Commit

Permalink
chore: correct days before an issue in GitHub is considered stale by …
Browse files Browse the repository at this point in the history
…stalebot

I got this wrong in #29134. The original config set this at 365 days, not 7.
  • Loading branch information
steveluscher authored Dec 8, 2022
1 parent 8a0a578 commit 6748daa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/manage-stale-issues-and-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
ascending: true # Spend API operations budget on older, more-likely-to-get-closed issues first
close-issue-message: "" # Leave no comment when closing
close-pr-message: "" # Leave no comment when closing
days-before-issue-stale: 7
days-before-issue-stale: 365
days-before-pr-stale: 14
days-before-close: 7
debug-only: ${{ github.event_name == 'pull_request' }} # Dry-run when true.
Expand Down

0 comments on commit 6748daa

Please sign in to comment.