2021-06-28 12:19:54 +02:00
|
|
|
name: setting-default-labels
|
|
|
|
|
|
|
|
on:
|
2022-06-28 00:31:07 +02:00
|
|
|
schedule:
|
|
|
|
- cron: '0 0/3 * * *'
|
2021-06-28 12:19:54 +02:00
|
|
|
|
|
|
|
jobs:
|
2022-06-28 00:31:07 +02:00
|
|
|
label-issues:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-09-11 21:32:13 +02:00
|
|
|
- uses: actions/stale@v9
|
2022-06-28 00:31:07 +02:00
|
|
|
name: Setting issue as idle
|
|
|
|
with:
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
stale-issue-message: 'This issue is idle because it has been open for 14 days with no activity.'
|
|
|
|
stale-issue-label: 'idle'
|
|
|
|
days-before-stale: 14
|
|
|
|
days-before-close: -1
|
|
|
|
operations-per-run: 100
|
|
|
|
exempt-issue-labels: 'backlog'
|
|
|
|
|
2024-09-11 21:32:13 +02:00
|
|
|
- uses: actions/stale@v9
|
2022-06-28 00:31:07 +02:00
|
|
|
name: Setting PR as idle
|
|
|
|
with:
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
stale-pr-message: 'This PR is idle because it has been open for 14 days with no activity.'
|
|
|
|
stale-pr-label: 'idle'
|
|
|
|
days-before-stale: 14
|
|
|
|
days-before-close: -1
|
|
|
|
operations-per-run: 100
|