Skip to content

stale

stale #917

Workflow file for this run

name: stale
# Please refer to https://github.com/actions/stale/blob/master/action.yml
# to see all config knobs of the stale action.
on:
schedule:
- cron: "0 0 * * *"
permissions:
contents: read
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write # for actions/stale to close stale issues
pull-requests: write # for actions/stale to close stale PRs
steps:
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0
with:
stale-issue-message: "A friendly reminder that this issue had no activity for 30 days."
stale-pr-message: "A friendly reminder that this PR had no activity for 30 days."
stale-issue-label: "lifecycle/stale"
stale-pr-label: "lifecycle/stale"
close-issue-message: "Closing this issue since it had no activity in the past 90 days."
close-pr-message: "Closing this PR since it had no activity in the past 90 days."
close-issue-label: "lifecycle/rotten"
close-pr-label: "lifecycle/rotten"
days-before-stale: 30
days-before-close: 90
remove-stale-when-updated: true
operations-per-run: 300
exempt-issue-labels: kind/feature