diff options
author | Mariatta <Mariatta@users.noreply.github.com> | 2020-12-16 02:36:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-16 02:36:33 (GMT) |
commit | 801165e1a99507d604d4db82e44b1cab9f9c715c (patch) | |
tree | e675be9f70a7b6c9cd694955c86cb64c6947ffcb /.github/workflows/stale.yml | |
parent | 928dbfc16c9c4715459c80fe551c74702480db8b (diff) | |
download | cpython-801165e1a99507d604d4db82e44b1cab9f9c715c.zip cpython-801165e1a99507d604d4db82e44b1cab9f9c715c.tar.gz cpython-801165e1a99507d604d4db82e44b1cab9f9c715c.tar.bz2 |
Update Stale action message (GH-23791)
We don't close PRs after it becomes stale.
Diffstat (limited to '.github/workflows/stale.yml')
-rw-r--r-- | .github/workflows/stale.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 706d8e1..58c9a4f 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/stale@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-pr-message: 'This PR is stale because it has been open for 30 days with no activity. Remove stale label or comment or this will be closed in 5 days' + stale-pr-message: 'This PR is stale because it has been open for 30 days with no activity.' stale-pr-label: 'stale' days-before-stale: 30 days-before-close: -1 |