From c80a21fbd83497a03875e7849142db2839c4eedb Mon Sep 17 00:00:00 2001 From: kevmoo Date: Tue, 24 Mar 2026 15:51:55 -0700 Subject: [PATCH] chore(github): update and clean up stale action workflow - Change schedule to run once a week (every Sunday at midnight) - Fix stale PR message duration to accurately state 28 days instead of 2 months - Add matching `stale-pr-label` to align with `stale-issue-label` - Minor formatting/punctuation fixes --- .github/workflows/stale.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 36494f3b..81698c58 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -3,7 +3,7 @@ name: Mark stale issues and pull requests on: workflow_dispatch: schedule: - - cron: 35 * * * * + - cron: '0 0 * * 0' permissions: contents: read jobs: @@ -25,14 +25,15 @@ jobs: Thank you for your contributions. stale-pr-message: | - Hello 👋, this PR has been opened for more than 2 months with no activity on it. + Hello 👋, this PR has been without activity for more than 28 days. If you think this is a mistake please comment and ping a maintainer to get this merged ASAP! Thanks for contributing! - You have 15 days until this gets closed automatically + You have 15 days until this gets closed automatically. exempt-issue-labels: 'Keep Open' exempt-pr-labels: 'Keep Open' close-issue-reason: not_planned days-before-stale: 28 days-before-close: 15 stale-issue-label: 'Stale' + stale-pr-label: 'Stale'