Skip to content

Stale Issues

Stale Issues #35

Workflow file for this run

name: Stale Issues
on:
schedule:
- cron: '0 2 * * *'
workflow_dispatch:
permissions:
issues: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- name: Mark and close stale issues
uses: actions/stale@v10
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-issue-stale: 365
days-before-issue-close: 20
days-before-pr-stale: -1
days-before-pr-close: -1
exempt-issue-labels: 'help wanted'
stale-issue-message: >
This issue has been automatically marked as stale because it has had
no activity for 1 year. It will be closed in 20 days if no further
activity occurs.
close-issue-message: >
This issue was automatically closed after being marked stale for
20 days with no further activity.