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
35 changes: 35 additions & 0 deletions .github/workflows/issue-management-stale-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,38 @@ jobs:
as needing author feedback and has not had any activity for 7 days.
It will be closed automatically if there is no response from the author
within 7 additional days from this comment.

- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
with:
days-before-stale: 365
Copy link
Member Author

Choose a reason for hiding this comment

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

if we wanted to take a more iterative approach, we could probably even start this at like 2 or 3 years, see what it yields, and then lower it until we get it to 365.

days-before-close: -1 # the stale tag workflow will take care of actually closing this
stale-issue-label: "needs author feedback"
stale-issue-message: >
This issue has had no activity for over a year.
Please update if this is still relevant.
only-labels: "enhancement,contribution welcome"
exempt-issue-labels: "needs author feedback"

- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
with:
days-before-stale: 30
days-before-close: -1 # the stale tag workflow will take care of actually closing this
stale-issue-label: "needs author feedback"
stale-issue-message: >
This issue is still marked as "needs repro" and has had no activity for a month.
Please provide additional details.
only-labels: "needs repro"
exempt-issue-labels: "needs author feedback"

- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
with:
days-before-pr-stale: 365
days-before-pr-close: 7
stale-pr-label: "stale"
stale-pr-message: >
This pull request has had no activity for over a year.
If it's still active, please push an update or leave a comment.
It will be closed automatically if there is no response from the author
within 7 additional days from this comment.
exempt-pr-labels: "stale"
exempt-draft-pr: false