Skip to content

Close Stale Issues and PRs #48

Close Stale Issues and PRs

Close Stale Issues and PRs #48

Workflow file for this run

name: Close Stale Issues and PRs
on:
workflow_dispatch:
schedule:
- cron: '30 1 * * *' # Run at 1:30 AM UTC every day
jobs:
stale:
name: Close Stale Issues and PRs
runs-on: ubuntu-24.04
permissions:
issues: write
pull-requests: write
steps:
- name: Mark and Close Stale Issues and PRs
uses: actions/stale@v9
with:
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 15 days.'
stale-pr-message: 'This PR is stale because it has been open 30 days with no activity. Remove stale label or comment to reopen.'
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
days-before-stale: 30
days-before-close: 15
days-before-pr-close: -1
repo-token: "${{ secrets.GH_PAT }}"