forked from getsentry/sentry-cocoa
-
Notifications
You must be signed in to change notification settings - Fork 4
47 lines (39 loc) · 1.7 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: 'close stale issues/PRs'
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@9c1b1c6e115ca2af09755448e0dbba24e5061cc8
with:
repo-token: ${{ github.token }}
days-before-stale: 21
days-before-close: 7
only-labels: ''
operations-per-run: 100
remove-stale-when-updated: true
debug-only: false
ascending: false
exempt-issue-labels: 'Status: Backlog,Status: In Progress'
stale-issue-label: 'Status: Stale'
stale-issue-message: |-
This issue has gone three weeks without activity. In another week, I will close it.
But! If you comment or otherwise update it, I will reset the clock, and if you label it `Status: Backlog` or `Status: In Progress`, I will leave it alone ... forever!
----
"A weed is but an unloved flower." ― _Ella Wheeler Wilcox_ 🥀
skip-stale-issue-message: false
close-issue-label: ''
close-issue-message: ''
exempt-pr-labels: 'Status: Backlog,Status: In Progress'
stale-pr-label: 'Status: Stale'
stale-pr-message: |-
This pull request has gone three weeks without activity. In another week, I will close it.
But! If you comment or otherwise update it, I will reset the clock, and if you label it `Status: Backlog` or `Status: In Progress`, I will leave it alone ... forever!
----
"A weed is but an unloved flower." ― _Ella Wheeler Wilcox_ 🥀
skip-stale-pr-message: false
close-pr-label:
close-pr-message: ''