forked from chunks-labz/predinex-stellar
-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (45 loc) · 2.43 KB
/
Copy pathstale.yml
File metadata and controls
52 lines (45 loc) · 2.43 KB
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
48
49
50
51
52
name: Stale
on:
schedule:
- cron: "0 6 * * *"
workflow_dispatch:
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
# ── Timing ──────────────────────────────────────────────────
days-before-stale: 30
days-before-close: 7
days-before-pr-stale: 21
days-before-pr-close: 7
# ── Labels ──────────────────────────────────────────────────
stale-issue-label: "stale"
close-issue-label: "auto-closed"
stale-pr-label: "stale"
close-pr-label: "auto-closed"
# ── Exempt labels (never marked stale) ──────────────────────
exempt-issue-labels: "pinned,security,blocked,in-progress,area: contract"
exempt-pr-labels: "pinned,security,blocked,in-progress,do-not-merge"
# ── Messages ────────────────────────────────────────────────
stale-issue-message: >
This issue has been inactive for 30 days. It will be closed in 7 days
unless there is further activity. If this issue is still relevant, please
leave a comment or remove the **stale** label.
close-issue-message: >
This issue has been automatically closed after 37 days of inactivity.
If the problem persists, please open a new issue with up-to-date context.
stale-pr-message: >
This pull request has been inactive for 21 days. It will be closed in
7 days unless there is further activity. Please rebase, address review
comments, or leave a note if you need more time.
close-pr-message: >
This pull request has been automatically closed after 28 days of
inactivity. Please reopen or open a new PR if the change is still needed.
# ── Safety ──────────────────────────────────────────────────
operations-per-run: 100
remove-stale-when-updated: true