Skip to content

Issue/Pull Request Handling #1689

Issue/Pull Request Handling

Issue/Pull Request Handling #1689

Workflow file for this run

name: Issue/Pull Request Handling
on:
schedule:
- cron: '00 20 * * *'
permissions:
issues: write
jobs:
stale:
name: Flag and close stale issues
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: 'This issue has been automatically marked as stale because it has been open for 60 days with no activity. It will be closed in 10 days if no further activity occurs.'
stale-issue-label: 'stale'
stale-pr-label: 'stale'
days-before-stale: 60
days-before-close: 10
only-labels: 'information required'