Skip to content
This repository has been archived by the owner on May 18, 2024. It is now read-only.

Close stale issues and PRs #727

Close stale issues and PRs

Close stale issues and PRs #727

Workflow file for this run

name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
days-before-stale: 30
days-before-close: 7
stale-issue-label: "stale"
stale-pr-label: "stale"
exempt-all-assignees: true
exempt-issue-labels: 'more-info,work-in-progress,accessibility-feature,help-wanted,persist/priority'