Skip to content

Auto-Close Stale PR

Auto-Close Stale PR #7

name: Auto-Close Stale PR
on:
schedule:
- cron: 0 0 * * *
jobs:
close-pr:
runs-on: ktbs-small-runner
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-pr-message: "This PR has been automatically marked as no-pr-activity. Closing it..."
stale-pr-label: "no-pr-activity"
exempt-pr-labels: "awaiting-approval"
days-before-stale: 13
days-before-close: 0