...
1name: 'Close stale'
2
3on:
4 schedule:
5 - cron: '0 1 * * *'
6
7jobs:
8 stale:
9 runs-on: 'ubuntu-latest'
10 steps:
11 - uses: 'actions/stale@v8'
12 with:
13 repo-token: ${{ secrets.GITHUB_TOKEN }}
14
15 stale-issue-message: |-
16 This issue is stale because it has been open for 90 days with no
17 activity. It will automatically close after 30 more days of
18 inactivity. Keep fresh with the 'lifecycle/frozen' label.
19 stale-issue-label: 'lifecycle/stale'
20 exempt-issue-labels: 'lifecycle/frozen'
21
22 stale-pr-message: |-
23 This Pull Request is stale because it has been open for 90 days with
24 no activity. It will automatically close after 30 more days of
25 inactivity. Keep fresh with the 'lifecycle/frozen' label.
26 stale-pr-label: 'lifecycle/stale'
27 exempt-pr-labels: 'lifecycle/frozen'
28
29 days-before-stale: 90
30 days-before-close: 30
View as plain text