Skip to content

Close Stale Issues #1548

Close Stale Issues

Close Stale Issues #1548

Workflow file for this run

name: Close Stale Issues
on:
schedule:
- cron: "0 8 * * *"
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-label: "Status: Stale"
stale-pr-label: "Status: Stale"
stale-issue-message: "This issue is stale because it has been open 30 days with no activity."
stale-pr-message: "This issue is stale because it has been open 30 days with no activity."
days-before-stale: 30
days-before-close: -1
operations-per-run: 250