repro-needed (comment + close) #22
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: repro-needed (comment + close) | |
| on: | |
| schedule: | |
| - cron: "0 */12 * * *" # every 12 hours (UTC) | |
| workflow_dispatch: | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v10 | |
| with: | |
| # Scope: only issues with this label | |
| only-issue-labels: "repro needed" | |
| # Comment immediately after label is present | |
| days-before-issue-stale: 0 | |
| # Close 7 days after the stale mark if still no activity | |
| days-before-issue-close: 7 | |
| # Use any label you prefer when “staling” (optional) | |
| #stale-issue-label: "wontfix" | |
| # Your exact comment: | |
| stale-issue-message: > | |
| Thanks for the report. To help us investigate, please follow our | |
| [Submitting an Issue](https://github.com/ikemen-engine/Ikemen-GO/blob/develop/CONTRIBUTING.md#submit-issue) | |
| guide and include a minimal reproduction. | |
| If no repro is provided within 7 days, this issue will be automatically closed. | |
| # Don’t add an extra comment when closing (set empty to disable) | |
| close-issue-message: "" | |
| # Keep PRs untouched by this workflow | |
| days-before-pr-stale: -1 | |
| days-before-pr-close: -1 | |
| # Optional: exempt certain labels from this automation | |
| exempt-issue-labels: "" | |
| # Increase if you have lots of issues | |
| operations-per-run: 200 |