This repository was archived by the owner on Sep 14, 2025. It is now read-only.
Close Stale PRs #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Close Stale PRs | |
on: | |
schedule: | |
- cron: "0 10 * * *" | |
jobs: | |
stale: | |
name: Close Stale Pull Requests | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
days-before-stale: 14 | |
exempt-pr-labels: "work-in-progress,dependencies" | |
stale-pr-message: "The PR is now considered as a stale PR and will be closed within 7 days" | |
close-pr-message: "The PR is now closed" | |
delete-branch: true |