Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Close stale issues

Close stale issues #6

Workflow file for this run

name: "Close stale issues"
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue has been automatically marked as stale due to inactivity. It will be closed soon if no further activity occurs."
stale-issue-label: "stale"
days-before-stale: 31
days-before-close: 92
remove-stale-when-updated: true
operations-per-run: 100000