Skip to content

Commit

Permalink
fix: don't automatically stale issues (#166)
Browse files Browse the repository at this point in the history
Updates the stale workflow to **not** automatically mark issues as
stale. The `meta/waiting-for-author` label can still be manually added
to issues, and then they will be automatically closed after 7 days of
further inactivity.

No changes to how this works for PRs.

Signed-off-by: Evan Baker <rbtr@users.noreply.github.com>
Co-authored-by: Jacques I Massa <jac.massa0908@gmail.com>
  • Loading branch information
rbtr and jimassa authored Mar 29, 2024
1 parent 2714d94 commit 5a23927
Showing 1 changed file with 6 additions and 4 deletions.
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.*, ',') }}

0 comments on commit 5a23927

Please sign in to comment.