Stale Issues and PRs #170
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@v10 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| # Issues | |
| stale-issue-message: | | |
| This issue 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. | |
| If this issue is still relevant, please: | |
| - Add a comment to keep it open | |
| - Remove the `stale` label | |
| Thank you for your contributions to AlgoLens! 🚀 | |
| close-issue-message: | | |
| This issue has been automatically closed due to inactivity. | |
| If you believe this issue is still relevant, please reopen it with additional context or create a new issue. | |
| stale-issue-label: "stale" | |
| exempt-issue-labels: "pinned,security,critical,roadmap" | |
| days-before-issue-stale: 60 | |
| days-before-issue-close: 7 | |
| # Pull Requests | |
| 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. | |
| If this PR is still relevant, please: | |
| - Rebase or update the branch | |
| - Add a comment explaining the status | |
| - Remove the `stale` label | |
| close-pr-message: | | |
| This pull request has been automatically closed due to inactivity. | |
| If you'd like to continue working on this, please reopen the PR or create a new one. | |
| stale-pr-label: "stale" | |
| exempt-pr-labels: "pinned,security,critical,wip" | |
| days-before-pr-stale: 30 | |
| days-before-pr-close: 7 | |
| # General settings | |
| operations-per-run: 100 | |
| remove-stale-when-updated: true | |
| debug-only: false |