Mark Stale Issues and PRs #28
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: Mark Stale Issues and PRs | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' # Run daily at midnight | |
| workflow_dispatch: | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| name: Mark Stale | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v9 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| # Issue settings | |
| stale-issue-message: | | |
| π This issue has been automatically marked as stale because it has not had recent activity. | |
| It will be closed in 7 days if no further activity occurs. | |
| If this issue is still relevant, please: | |
| - Add a comment to keep it open | |
| - Add the `keep-open` label | |
| - Provide additional context or updates | |
| Thank you for your contributions! π | |
| close-issue-message: | | |
| π This issue has been automatically closed due to inactivity. | |
| If you believe this issue is still relevant, please: | |
| - Reopen the issue | |
| - Provide updated information | |
| - Reference this issue in a new PR | |
| Thank you! π | |
| days-before-issue-stale: 60 | |
| days-before-issue-close: 7 | |
| stale-issue-label: 'stale' | |
| exempt-issue-labels: 'keep-open,bug,security,hacktoberfest' | |
| # PR settings | |
| 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. | |
| If this PR is still relevant, please: | |
| - Rebase on the latest main branch | |
| - Address any review comments | |
| - Add a comment explaining the status | |
| - Add the `keep-open` label | |
| Thank you for your contribution! π | |
| close-pr-message: | | |
| π This pull request has been automatically closed due to inactivity. | |
| If you'd like to continue this work: | |
| - Reopen the PR | |
| - Create a new PR with updated changes | |
| - Reference this PR in your new submission | |
| Thank you! π | |
| days-before-pr-stale: 30 | |
| days-before-pr-close: 14 | |
| stale-pr-label: 'stale' | |
| exempt-pr-labels: 'keep-open,in-progress,hacktoberfest-accepted' | |
| # General settings | |
| operations-per-run: 100 | |
| remove-stale-when-updated: true | |
| ascending: true |