name: Stale on: schedule: - cron: "0 0 * * *" # Run daily at midnight UTC workflow_dispatch: permissions: issues: write pull-requests: write jobs: stale: name: Stale Pull Requests runs-on: ubuntu-latest steps: - uses: actions/stale@v10 with: stale-pr-message: "This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs within 7 days. Thank you for your contributions!" close-pr-message: "This pull request has been automatically closed due to inactivity. Feel free to reopen it if you would like to continue working on it." days-before-pr-stale: 15 days-before-pr-close: 7 stale-pr-label: "stale" exempt-pr-labels: "pinned,work-in-progress,on-hold" days-before-issue-stale: -1 days-before-issue-close: -1