forked from k8snetworkplumbingwg/ptp-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
19 lines (18 loc) · 723 Bytes
/
stale.yaml
File metadata and controls
19 lines (18 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v10
with:
stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
stale-pr-message: 'This pull request is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
stale-issue-label: 'stale'
stale-pr-label: 'stale'
close-issue-label: 'rotten'
close-pr-label: 'rotten'
days-before-stale: 90
days-before-close: 7