Skip to content

Issue/Pull Request Handling #1018

Issue/Pull Request Handling

Issue/Pull Request Handling #1018

Workflow file for this run

name: Issue/Pull Request Handling
on:
schedule:
- cron: '00 20 * * *'
permissions:
contents: read
pull-requests: write
jobs:
stale:
name: Flag and close stale issues
runs-on: ubuntu-24.04
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'