Skip to content

Commit 8f39e76

Browse files
authored
Increase time before issues/PRs become stale (#225)
1 parent 2104809 commit 8f39e76

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/stale.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,14 @@ jobs:
1010
- uses: actions/stale@v4
1111
with:
1212
repo-token: ${{ secrets.GITHUB_TOKEN }}
13-
stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
14-
stale-pr-message: 'This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
15-
close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.'
16-
close-pr-message: 'This PR was closed because it has been stalled for 7 days with no activity.'
13+
stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 10 days.'
14+
stale-pr-message: 'This PR is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 10 days.'
15+
close-issue-message: 'This issue was closed because it has been stalled for 10 days with no activity.'
16+
close-pr-message: 'This PR was closed because it has been stalled for 10 days with no activity.'
1717
stale-issue-label: 'stale'
1818
stale-pr-label: 'stale'
19-
exempt-all-pr-assignees: true
19+
exempt-all-assignees: true
20+
exempt-issue-labels: 'proposal'
2021
operations-per-run: 100
22+
days-before-stale: 90
23+
days-before-close: 10

0 commit comments

Comments
 (0)