forked from PrefectHQ/prefect
-
Notifications
You must be signed in to change notification settings - Fork 0
20 lines (19 loc) · 875 Bytes
/
stale.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: "Close stale issues and PRs"
on:
schedule:
- cron: "30 1 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v6
with:
stale-issue-message: "This issue is stale because it has been open 30 days with no activity. To keep this issue open remove stale label or comment."
stale-issue-label: "status:stale"
close-issue-message: "This issue was closed because it has been stale for 14 days with no activity. If this issue is important or you have more to add feel free to re-open it."
days-before-stale: 30
days-before-pr-stale: -1 # Disable stale-ing PRs
days-before-close: 14
exempt-issue-labels: "status:in-progress,status:roadmap,status:accepted"
ascending: true # https://github.com/actions/stale#ascending
operations-per-run: 60