RUM-8727 Automatically close stale issues#2392
Merged
dd-mergequeue[bot] merged 1 commit intoJul 14, 2025
Merged
Conversation
mariedm
force-pushed
the
mariedm/rum-8727-auto-close-stale-issues
branch
from
July 11, 2025 14:32
4ee69f5 to
0ffd4c0
Compare
mariedm
force-pushed
the
mariedm/rum-8727-auto-close-stale-issues
branch
from
July 11, 2025 14:34
0ffd4c0 to
bda2aa4
Compare
mariedm
marked this pull request as ready for review
July 11, 2025 14:35
gonzalezreal
approved these changes
Jul 14, 2025
Member
Author
|
/merge |
|
View all feedbacks in Devflow UI.
The expected merge time in
|
4 tasks
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What and why?
This PR adds a GitHub Actions workflow to automatically manage stale issues that are waiting for responses. The goal is to keep the issue tracker clean by automatically closing issues with the
awaiting-responselabel that have been inactive for 17 days (14 days to mark as stale with a message + 3 days to close). This helps maintain repository hygiene and ensures issues don't remain open indefinitely when waiting for user responses.How?
.github/workflows/stale.ymlusing the Stale Github Actionawaiting-responselabelstalelabel when marking issues as stale andautomatically-closedlabel when closingDebugging
As a first step, the workflow:
debug-only: truein the configuration for initial testing; this flag allows to safely observe what the workflow would do, without affecting any issuesA follow-up PR will:
debug-onlytofalseReview checklist
make api-surface)