|
| 1 | +name: 'Close stale issues and PR' |
| 2 | +on: |
| 3 | + schedule: |
| 4 | + - cron: '30 1 * * *' |
| 5 | + |
| 6 | +jobs: |
| 7 | + stale: |
| 8 | + runs-on: ubuntu-latest |
| 9 | + steps: |
| 10 | + - uses: actions/stale@v9 |
| 11 | + with: |
| 12 | + stale-issue-message: > |
| 13 | + This issue has been automatically marked as `stale` because it has not had |
| 14 | + recent activity. :calendar: It will be _closed automatically_ in one week if no further activity occurs. |
| 15 | + stale-pr-message: > |
| 16 | + This PR has been automatically marked as `stale` because it has not had |
| 17 | + recent activity. :calendar: It will be _closed automatically_ in two weeks if no further activity occurs. |
| 18 | + close-issue-message: This issue was closed because it has been stalled for 7 days with no activity. |
| 19 | + close-pr-message: This PR was closed because it has been stalled for 20 days with no activity. |
| 20 | + days-before-stale: 20 |
| 21 | + days-before-close: 7 |
| 22 | + days-before-pr-close: 20 |
| 23 | + exempt-issue-labels: 'critical,technical debt' |
| 24 | + exempt-assignees: wurstbrot |
0 commit comments