From ebc02316d15c192ae650754b8032ccfc89897aa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D7=A0=CF=85=CE=B1=CE=B7=20=D7=A0=CF=85=CE=B1=CE=B7=D1=95?= =?UTF-8?q?=CF=83=CE=B7?= Date: Thu, 3 Sep 2026 08:22:46 -0700 Subject: [PATCH] fix: say something real when marking an issue stale The stale workflow shipped the action's example text: "Stale issue message" and "Stale pull request message". It has been posting those to contributors on every stale issue and pull request since the workflow was added. Replaced with the wording osapi-justfiles and specs already use, so all seven repositories say the same thing. Found by hashing each workflow across every repository: six of ten check names had more than one variant in circulation, and this one was the same file in five places with the placeholder never filled in. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01FuKUsHFG1EqZXamffh9M2c --- .github/workflows/stale.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 81e295fa5..65fc856c4 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/stale@v11 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'Stale issue message' - stale-pr-message: 'Stale pull request message' + stale-issue-message: 'This issue has been automatically marked as stale due to inactivity. It will be closed if no further activity occurs.' + stale-pr-message: 'This pull request has been automatically marked as stale due to inactivity. It will be closed if no further activity occurs.' stale-issue-label: 'no-issue-activity' stale-pr-label: 'no-pr-activity'