Skip to content

Commit b196c7d

Browse files
authored
Don't close stale issues (#1522)
- Change the github workflow to not autoclose issues, instead just marking issues as stale for manual review
1 parent 964b586 commit b196c7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/issues.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
- uses: actions/stale@v5
1515
with:
1616
days-before-issue-stale: 365
17-
days-before-issue-close: 14
17+
days-before-issue-close: -1
1818
stale-issue-label: "stale"
1919
stale-issue-message: "This issue is stale because it has been open for 365 days with no activity."
2020
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale."
2121
exempt-issue-labels: "help wanted,engineering"
2222
days-before-pr-stale: -1 # change if we want to auto close old PRs
2323
days-before-pr-close: -1
24-
repo-token: ${{ secrets.GITHUB_TOKEN }}
24+
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)