Inaktive Issues und Pull Requests schließen #449
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: 'Inaktive Issues und Pull Requests schließen' | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| on: | |
| schedule: | |
| - cron: '30 1 * * *' | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v10.3.0 | |
| with: | |
| stale-pr-message: 'Diese Pull Request wurde als inaktiv markiert, weil sie seit 30 Tagen offen ist und keine Aktivität aufweist. Entferne das "Inaktiv"-Label oder diesen Kommentar, sonst wird diese Pull Request in 5 Tagen geschlossen.' | |
| close-pr-message: 'Diese Pull Request wurde geschlossen, weil sie seit 5 Tagen keine Aktivität aufweist.' | |
| stale-issue-message: 'Dieses Issue wurde als inaktiv markiert, weil es seit 30 Tagen offen ist und keine Aktivität aufweist. Entferne das "Inaktiv"-Label oder diesen Kommentar, sonst wird dieses Issue in 5 Tagen geschlossen.' | |
| close-issue-message: 'Dieses Issue wurde geschlossen, weil es seit 5 Tagen keine Aktivität aufweist.' | |
| days-before-stale: 30 | |
| days-before-close: 5 | |
| exempt-issue-labels: 'Renovate' | |
| exempt-pr-labels: 'Hilfe gesucht' | |
| exempt-all-milestones: true | |
| operations-per-run: 100 | |
| stale-issue-label: 'Inaktiv' |