Skip to content

Stale

Stale #131

Workflow file for this run

name: Stale
on:
schedule:
- cron: "0 3 * * 6"
permissions:
issues: write
pull-requests: write
jobs:
stale:
name: Stale
runs-on: ubuntu-latest
steps:
- name: Mark stale issues and pull requests
uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e #v9
with:
repo-token: ${{ github.token }}
exempt-issue-labels: "enhancement,question,help wanted,bug"
exempt-pr-labels: "need-help,WIP"
stale-issue-message: "This issue is stale because it has been open 120 days with no activity. Remove stale label or comment or this will be closed in 5 days"
stale-pr-message: 'It has been open 120 days with no activity. Remove stale label or comment or this will be closed in 5 days'
days-before-stale: 120
days-before-close: 5