Close inactive issues #104
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: Close inactive issues | |
| on: | |
| schedule: | |
| - cron: "30 1 * * 0" | |
| workflow_dispatch: | |
| jobs: | |
| close-issues: | |
| if: false # Disabled for now until I actually have time to take care of all these issues | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/stale@v5 | |
| with: | |
| operations-per-run: '200' | |
| ascending: true | |
| days-before-issue-stale: 334 | |
| days-before-issue-close: 30 | |
| stale-issue-label: "stale" | |
| stale-issue-message: | | |
| This issue is marked stale as it has been open for 11 months without activity. | |
| Please try the latest ImHex version. (Avaiable here: https://imhex.download/ for release and https://imhex.download/#nightly for development version) | |
| If the issue persists on the latest version, please make a comment on this issue again | |
| Without response, this issue will be closed in one month. | |
| close-issue-message: "" | |
| days-before-pr-stale: -1 | |
| days-before-pr-close: -1 | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} |