Skip to content
This repository has been archived by the owner on Jul 12, 2023. It is now read-only.

Close stale

Close stale #2094

Workflow file for this run

name: 'Close stale'
on:
schedule:
- cron: '0 */12 * * *'
jobs:
stale:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/stale@v3'
with:
repo-token: '${{ secrets.GITHUB_TOKEN }}'
stale-issue-message: |-
This issue is stale because it has been open for 14 days with no
activity. It will automatically close after 7 more days of inactivity.
stale-issue-label: 'kind/stale'
exempt-issue-labels: 'priority/important-soon,kind/bug,kind/privacy,kind/enhancement'
stale-pr-message: |-
This Pull Request is stale because it has been open for 14 days with
no activity. It will automatically close after 7 more days of
inactivity.
stale-pr-label: 'kind/stale'
exempt-pr-labels: 'priority/important-soon,kind/bug,kind/privacy,kind/enhancement'
days-before-stale: 14
days-before-close: 7