Skip to content

Close stale issues and PRs #7

Close stale issues and PRs

Close stale issues and PRs #7

Workflow file for this run

name: Mark Stale Issues and PR
on:
schedule:
- cron: "*/10 5 * * *"
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 365
stale-issue-message: "This issue is stale because it has been open 365 days with no activity. Remove stale label or comment or this will be closed in 7 days."
stale-pr-message: "This PR is stale because it has been open 365 days with no activity. Remove stale label or comment or this will be closed in 7 days."
close-issue-message: "This issue was closed because it has been stalled for 7 days with no activity."
close-pr-message: "This PR was closed because it has been stalled for 7 days with no activity."
exempt-issue-labels: "Help Wanted, Good first issue, Never gets stale"
exempt-pr-labels: "Help Wanted, Never gets stale"