From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Tue, 19 May 2026 21:13:37 +0000 (+0300) Subject: Mark PRs as stale after 90 days (#150104) X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6f4c18fa776257d349b2a029fca8f704c8ec5e7e;p=thirdparty%2FPython%2Fcpython.git Mark PRs as stale after 90 days (#150104) --- diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 01fe5ba8fda8..37f78519dedc 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -21,10 +21,10 @@ jobs: uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10.2.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-pr-message: 'This PR is stale because it has been open for 30 days with no activity.' + stale-pr-message: 'This PR is stale because it has been open for 90 days with no activity.' stale-pr-label: 'stale' days-before-issue-stale: -1 - days-before-pr-stale: 30 + days-before-pr-stale: 90 days-before-close: -1 ascending: true operations-per-run: 120