Bumps [actions/stale](https://github.com/actions/stale) from 4.1.0 to 5.1.1. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/v4.1.0...9c1b1c6e115ca2af09755448e0dbba24e5061cc8) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Grace Park <gracepark@github.com>
52 lines
2.2 KiB
YAML
52 lines
2.2 KiB
YAML
name: Public Repo Stale Check
|
|
|
|
# **What it does**: Provides more aggressive stale checks in the open repo.
|
|
# **Why we have it**: In the open repo, we want more aggressive stale checking.
|
|
# **Who does it impact**: Anyone working in the open repo.
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '45 16 * * *' # Run each day at 16:45 UTC / 8:45 PST
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
stale_contributor:
|
|
if: github.repository == 'github/docs'
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/stale@9c1b1c6e115ca2af09755448e0dbba24e5061cc8
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
stale-issue-message: 'A stale label has been added to this issue becuase it has been open for 60 days with no activity. To keep this issue open, add a comment within 3 days.'
|
|
days-before-issue-stale: 60
|
|
days-before-issue-close: 3
|
|
exempt-issue-labels: 'help wanted,never-stale,waiting for review'
|
|
stale-pr-message: 'A stale label has been added to this pull request because it has been open 7 days with no activity. To keep this PR open, add a comment or push a commit within 3 days.'
|
|
days-before-pr-stale: 7
|
|
days-before-pr-close: 3
|
|
stale-pr-label: 'stale'
|
|
exempt-pr-labels: 'waiting for review,never-stale,ready to merge'
|
|
stale_staff:
|
|
if: github.repository == 'github/docs'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@9c1b1c6e115ca2af09755448e0dbba24e5061cc8
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
stale-pr-message: 'This is a gentle bump for the docs team that this PR is waiting for review.'
|
|
days-before-pr-stale: 14
|
|
days-before-pr-close: -1 # Never close
|
|
remove-stale-when-updated: false
|
|
operations-per-run: 100
|
|
only-labels: 'waiting for review'
|
|
# The hope is that by setting the stale-pr-label to the same label
|
|
# as the label that the stale check looks for, this will result in
|
|
# a comment being posted every 14 days as an infinite loop, which is what
|
|
# we want
|
|
stale-pr-label: 'waiting for review'
|
|
exempt-pr-labels: 'never-stale'
|