diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index e300e273de..6ecdfac643 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -1,4 +1,4 @@ -name: Mark & Close stale PRs +name: Stale on: workflow_dispatch: @@ -9,12 +9,13 @@ jobs: stale: runs-on: [ default ] steps: - - uses: actions/stale@v9 + - name: Stale + uses: actions/stale@v9 with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-pr-stale: 21 - stale-pr-label: 'STATUS / STALE' - stale-pr-message: "This PR hasn't seen activity in the last 3 weeks! Should it be merged, closed, or worked on further? If you want to keep it open, post a comment or remove the `STATUS / STALE` label – otherwise, this will be closed in 1 week." + stale-pr-label: 'STALE / OPEN' + stale-pr-message: "This PR hasn't seen activity in the last 6 weeks! Should it be merged, closed, or worked on further? If you want to keep it open, post a comment or remove the `STALE / OPEN` label – otherwise, this will be closed in 1 week." days-before-pr-close: 7 - close-pr-label: 'STATUS / CLOSED BY STALE' + close-pr-label: 'STALE / CLOSED' close-pr-message: 'This PR was closed due to 4 weeks of inactivity. Feel free to reopen it if still relevant.'