ci: migrate from probot/stale to actions/stale - #6926
Open
yottanami wants to merge 2 commits into
Open
Conversation
yottanami
marked this pull request as ready for review
August 11, 2026 16:28
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #6926 +/- ##
=======================================
Coverage 76.11% 76.11%
=======================================
Files 163 163
Lines 21151 21151
Branches 3334 3334
=======================================
Hits 16099 16099
Misses 4264 4264
Partials 788 788 🚀 New features to boost your workflow:
|
probot/stale is unmaintained; the project's own README points adopters to actions/stale instead. Replace .github/stale.yml with .github/workflows/stale.yaml, porting the existing schedule (60 days for needinfo-labeled issues, 120 days for PRs, close after 7 days) and messages 1:1. Note: this only replaces the config file. The probot Stale GitHub App itself will still need to be uninstalled from the repo/org separately, which isn't something a PR can do. Closes beetbox#4872
yottanami
force-pushed
the
agent/71-migrate-stale-action
branch
from
August 18, 2026 13:03
e40f919 to
361183f
Compare
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
Migrates the deprecated probot/stale bot config (
.github/stale.yml) to theactions/staleGitHub Action (.github/workflows/stale.yaml), per the project's own README pointer that probot/stale is unmaintained andactions/staleis the replacement.Why
probot/stale is deprecated upstream and no longer maintained.
actions/staleis the drop-in replacement and doesn't require a third-party GitHub App integration.What changed
.github/stale.yml.github/workflows/stale.yamlusingactions/stale@v9All schedule/scoping/message values are ported 1:1 from the old config (unchanged wording):
needinfoare eligible (matches oldonly-issue-labels)How this was tested
No code/runtime to execute — this is a GitHub Actions workflow config change. Verified:
Also diffed the old
.github/stale.ymlvalues against the new workflow'swith:block line by line to confirm every value (days-until-stale, days-until-close, labels, both message bodies) was ported exactly.Note for maintainers
The probot Stale GitHub App itself will still need manual uninstallation from the
beetboxorg — that's not something a PR can do, just flagging it here so it isn't missed.Closes #4872