Skip to content

Commit

Permalink
Don't close stale issues (#1522)
Browse files Browse the repository at this point in the history
- Change the github workflow to not autoclose issues, instead just marking issues as stale for manual review
  • Loading branch information
ElianHugh authored May 30, 2024
1 parent 964b586 commit b196c7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
- uses: actions/stale@v5
with:
days-before-issue-stale: 365
days-before-issue-close: 14
days-before-issue-close: -1
stale-issue-label: "stale"
stale-issue-message: "This issue is stale because it has been open for 365 days with no activity."
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale."
exempt-issue-labels: "help wanted,engineering"
days-before-pr-stale: -1 # change if we want to auto close old PRs
days-before-pr-close: -1
repo-token: ${{ secrets.GITHUB_TOKEN }}
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b196c7d

Please sign in to comment.