Mark stale issues and PRs #3
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
| # SPDX-FileCopyrightText: 2025 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH, Darmstadt, Germany | |
| # | |
| # SPDX-License-Identifier: CC0-1.0 | |
| name: Mark stale issues and PRs | |
| on: | |
| schedule: | |
| - cron: '0 2 * * 1' # At 02:00 on Monday | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v9 | |
| with: | |
| days-before-stale: 365 | |
| days-before-close: -1 | |
| ascending: true | |
| operations-per-run: 5 | |
| stale-issue-message: >- | |
| This issue has been automatically marked as stale | |
| because it has not had recent activity. | |
| It will not be closed. | |
| stale-pr-message: >- | |
| This PR has been automatically marked as stale | |
| because it has not had recent activity. | |
| It will not be closed. |