Skip to content

Commit

Permalink
fix: set correct close time (#739)
Browse files Browse the repository at this point in the history
I initially thought the days-before-close is relative to the last activity on the PR but it seems to be relative to the time the stale label was added. I lowered it to 15 days to achieve the actual desired time of 45 days before closing an item.
  • Loading branch information
maxmoehl authored Dec 6, 2024
1 parent eac1856 commit 6f05faa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
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 within 15 days.'
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 within 15 days.'
days-before-stale: 30
days-before-close: 45
days-before-close: 15
stale-issue-label: 'stale'
stale-pr-label: 'stale'
exempt-issue-labels: 'evergreen'
Expand Down

0 comments on commit 6f05faa

Please sign in to comment.