Stale Issues and PRs #82
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: Stale Issues and PRs | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' # Daily at midnight UTC | |
| workflow_dispatch: | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v9 | |
| with: | |
| # Issue settings | |
| days-before-stale: 60 | |
| days-before-close: 14 | |
| stale-issue-label: stale | |
| stale-issue-message: | | |
| This issue has been automatically marked as stale because it has not had recent activity. | |
| It will be closed in 14 days if no further activity occurs. | |
| Thank you for your contributions! | |
| close-issue-message: | | |
| This issue has been automatically closed due to inactivity. | |
| Feel free to reopen if this is still relevant. | |
| # PR settings | |
| stale-pr-label: stale | |
| stale-pr-message: | | |
| This pull request has been automatically marked as stale because it has not had recent activity. | |
| It will be closed in 14 days if no further activity occurs. | |
| Please update the PR or leave a comment if this is still being worked on. | |
| close-pr-message: | | |
| This pull request has been automatically closed due to inactivity. | |
| Feel free to reopen when ready to continue. | |
| # Exempt labels - issues/PRs with these labels won't be marked stale | |
| exempt-issue-labels: pinned,security,help wanted | |
| exempt-pr-labels: pinned,security,help wanted | |
| # Don't close issues/PRs with these labels | |
| exempt-all-assignees: true |