Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@ jobs:
id: stale
with:
ascending: true
close-issue-message: 'Issue closed due to inactivity.'
close-pr-message: 'Pull request closed due to inactivity.'
days-before-close: 7
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot does this close issues after 7 days still?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, issues will not be closed after 7 days anymore. Fixed in 07f7bb9 by replacing days-before-close: 7 with days-before-issue-close: -1 to disable issue closing entirely while keeping days-before-pr-close: 7 for PRs.

days-before-stale: 14
delete-branch: true
exempt-issue-labels: 'exempt-stale'
exempt-pr-labels: 'exempt-stale,dependencies,ci'
exempt-pr-authors: 'dependabot[bot]'
operations-per-run: 100
stale-issue-message: 'This issue is stale because it has been open for 2 weeks with no activity. Remove stale label or comment or this will be closed in 7 days'
stale-issue-message: 'This issue is stale because it has been open for 2 weeks with no activity. Remove stale label or comment to keep it open.'
stale-pr-message: 'This pull request is stale because it has been open for 2 weeks with no activity. Remove stale label or comment or this will be closed in 7 days'
- name: Print outputs
run: echo ${{ join(steps.stale.outputs.*, ',') }}