-
Notifications
You must be signed in to change notification settings - Fork 43
28 lines (25 loc) · 931 Bytes
/
stale.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Mark stale issues and pull requests
on:
schedule:
- cron: "15 7 * * *"
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-issue-stale: 180
days-before-pr-stale: 60
days-before-issue-close: -1
days-before-pr-close: -1
stale-issue-message: "This issue is stale because it has been open 180 days with no activity."
stale-issue-label: "lifecycle/stale"
stale-pr-message: "This PR is stale because it has been open 60 days with no activity."
stale-pr-label: "lifecycle/stale"
close-issue-label: "lifecycle/rotten"
exempt-issue-labels: "lifecycle/frozen"
exempt-pr-labels: "lifecycle/frozen"