Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: don't automatically stale issues #166

Merged
merged 2 commits into from
Mar 29, 2024
Merged
Changes from all 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
10 changes: 6 additions & 4 deletions .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@ jobs:
ascending: true
close-issue-message: "Issue closed due to inactivity."
close-pr-message: "Pull request closed due to inactivity."
days-before-close: 7
days-before-stale: 7
days-before-issue-stale: -1 # don't automatically stale issues.
days-before-issue-close: 7 # manually staled issues may be closed after 7 days.
days-before-pr-close: 7
days-before-pr-stale: 30
delete-branch: true
stale-issue-label: "meta/waiting-for-author"
stale-pr-labels: "meta/waiting-for-author"
operations-per-run: 100
stale-issue-message: "This issue is stale because it has been open for 7 days with no activity. Remove stale label or comment or this will be closed in 7 days"
stale-pr-message: "This pull request is stale because it has been open for 7 days with no activity. Remove stale label or comment or this will be closed in 7 days"
stale-issue-message: "This issue will be closed in 7 days due to inactivity."
stale-pr-message: "This PR will be closed in 7 days due to inactivity."
- name: Print outputs
run: echo ${{ join(steps.stale.outputs.*, ',') }}
Loading