Skip to content

Commit

Permalink
ci: change days-before-stale setting (#388)
Browse files Browse the repository at this point in the history
Fixes #384
  • Loading branch information
afuetterer authored Aug 17, 2024
1 parent 8b755b9 commit 7fe90eb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ jobs:
steps:
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0
with:
days-before-stale: 60
# handle issues: set to abandoned, close after 7 days with message
days-before-issue-close: 7
days-before-stale: 90
# handle issues: set to abandoned, close after 14 days with message
days-before-issue-close: 14
stale-issue-label: 'status: abandoned'
stale-issue-message: |
This issue is stale because it has been open 60 days without activity.
Remove 'abandoned' label or comment or this will be closed in 7 days.
close-issue-message: This issue was closed because it has been stalled for 7 days with no activity.
This issue is stale because it has been open 90 days without activity.
Remove 'abandoned' label or comment or this will be closed in 14 days.
close-issue-message: This issue was closed because it has been stalled for 14 days with no activity.

# handle pull requests: set to abandoned, but do not close per bot
days-before-pr-close: -1 # never close PRs
stale-pr-label: 'status: abandoned'
stale-pr-message: This PR is stale because it has been open 60 days without activity.
stale-pr-message: This PR is stale because it has been open 90 days without activity.

0 comments on commit 7fe90eb

Please sign in to comment.