forgejo-runner-act/.github/workflows/stale.yml
Cat™ 97dc3cf147
Make stale bot action less aggressive (#478)
Make stale bot action less aggressive
Days before marking issues/PRs as stale: 30
Days before closing stale issues/PRs: 14
2021-01-14 21:19:25 -08:00

23 lines
732 B
YAML

name: "Close stale issues"
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
name: Stale
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'Issue is stale and will be closed in 14 days unless there is new activity'
stale-pr-message: 'PR is stale and will be closed in 14 days unless there is new activity'
stale-issue-label: 'meta/stale'
exempt-issue-label: 'meta/stale-exempt'
stale-pr-label: 'meta/stale'
exempt-pr-label: 'meta/stale-exempt'
remove-stale-when-updated: 'True'
operations-per-run: 500
days-before-stale: 30
days-before-close: 14