Skip to content

Stale PR Check

Stale PR Check #53

name: Stale PR Check
on:
workflow_dispatch: {}
schedule:
- cron: '0 0 * * *'
permissions:
pull-requests: write
jobs:
stale-pr-check:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-pr-message: 'This PR has been labeled as stale due to inactivity and will be closed in 7 days if no further activity occurs.'
close-pr-message: 'This PR has been closed due to inactivity. Feel free to reopen if you are still working on it.'
days-before-pr-stale: 30
days-before-pr-close: 7
stale-pr-label: 'stale'
exempt-pr-labels: 'in-progress'