-
Notifications
You must be signed in to change notification settings - Fork 194
21 lines (21 loc) · 1.05 KB
/
stale.yml
File metadata and controls
21 lines (21 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: 'Close stale issues and PRs'
on:
schedule:
- cron: "30 1 * * *"
jobs:
stale:
runs-on:
group: databricks-protected-runner-group
labels: linux-ubuntu-latest
steps:
# pinned at v4 (https://github.com/actions/stale/releases/tag/v4.0.0)
- uses: actions/stale@cdf15f641adb27a71842045a94023bef6945e3aa
with:
stale-issue-message: "This issue has been marked as Stale because it has been open for 180 days with no activity. If you would like the issue to remain open, please remove the stale label or comment on the issue."
stale-pr-message: "This PR has been marked as Stale because it has been open for 180 days with no activity. If you would like the PR to remain open, please remove the stale label or comment on the PR."
# mark issues/PRs stale when they haven't seen activity in 180 days
days-before-stale: 180
# disable auto-close.
days-before-close: -1
# ignore checking issues with the following labels
exempt-issue-labels: "epic, discussion"