Skip to content

Mark stale issues and PRs #158

Mark stale issues and PRs

Mark stale issues and PRs #158

Workflow file for this run

name: Mark stale issues and PRs
on:
schedule:
# Run daily at 01:30 UTC
- cron: "30 1 * * *"
workflow_dispatch: # Optional: run manually from Actions tab
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v10
with:
days-before-issue-stale: 180
days-before-issue-close: 7
stale-issue-label: "wontfix"
stale-issue-message: |
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
close-issue-message: ""
exempt-issue-labels: "discussion,security"
# PRs: -1 = do not mark or close
days-before-pr-stale: -1
days-before-pr-close: -1
repo-token: ${{ secrets.GITHUB_TOKEN }}