chore: add stale workflow to manage inactive issues/PRs#18
Merged
DefinitelyADev merged 1 commit intomasterfrom Sep 22, 2025
Merged
chore: add stale workflow to manage inactive issues/PRs#18DefinitelyADev merged 1 commit intomasterfrom
DefinitelyADev merged 1 commit intomasterfrom
Conversation
Add a GitHub Actions workflow, 'stale.yml', to automatically manage stale issues and pull requests. This workflow marks issues and PRs as stale after 30 days of inactivity and closes them if no action is taken within an additional 5 days. This change helps maintain repository hygiene by reducing the number of inactive issues and PRs. Exempt labels include 'enhancement' and 'bug'.
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR adds a GitHub Actions workflow to automatically manage inactive issues and pull requests by marking them as stale after 30 days of inactivity and closing them after an additional 5 days without activity.
- Introduces automated stale issue and PR management using the
actions/stale@v10action - Configures 30-day inactivity threshold before marking as stale, with 5-day grace period before closure
- Exempts issues and PRs labeled with 'enhancement' or 'bug' from automatic closure
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #18 +/- ##
=======================================
Coverage 72.13% 72.13%
=======================================
Files 6 6
Lines 664 664
Branches 73 73
=======================================
Hits 479 479
Misses 167 167
Partials 18 18 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
Add a GitHub Actions workflow, 'stale.yml', to automatically manage stale issues and pull requests. This workflow marks issues and PRs as stale after 30 days of inactivity and closes them if no action is taken within an additional 5 days. This change helps maintain repository hygiene by reducing the number of inactive issues and PRs. Exempt labels include 'enhancement' and 'bug'.