diff options
author | Signal Linden <signal@lindenlab.com> | 2023-02-13 09:10:29 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-13 09:10:29 -0800 |
commit | c833f711d513d559dc0b584cae54347749090d5f (patch) | |
tree | 9aeb831586e14ceda1461b1df5d972f10e1d6150 /.github/workflows/stale.yaml | |
parent | a2f8f3db0663887462d0de69f3fc7eef673dfd35 (diff) |
Reduce stale time for PRs
Let's reduce the stale time from 60 days to 30. We already have at least two multi-month PRs.
Diffstat (limited to '.github/workflows/stale.yaml')
-rw-r--r-- | .github/workflows/stale.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml index 82a9a968b9..35ac41420c 100644 --- a/.github/workflows/stale.yaml +++ b/.github/workflows/stale.yaml @@ -15,8 +15,8 @@ jobs: - uses: actions/stale@v6 id: stale with: - stale-pr-message: This pull request is stale because it has been open 60 days with no activity. Remove stale label or comment or it will be closed in 7 days - days-before-stale: 60 + stale-pr-message: This pull request is stale because it has been open 30 days with no activity. Remove stale label or comment or it will be closed in 7 days + days-before-stale: 30 days-before-close: 7 exempt-pr-labels: blocked,must,should,keep stale-pr-label: stale |