Skip to content

Close Stale Issues

Close Stale Issues #57

Workflow file for this run

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