forked from imDarshanGK/AI-dev-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
83 lines (56 loc) · 2.01 KB
/
Copy pathstale.yml
File metadata and controls
83 lines (56 loc) · 2.01 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: Stale Issues and PRs
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- name: Mark stale issues and PRs
uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
# =========================
# Issues
# =========================
days-before-issue-stale: 14
days-before-issue-close: 7
stale-issue-label: stale
stale-issue-message: |
👋 This issue has had no activity for 14 days.
If you are still working on it, please comment with an update.
Otherwise, this issue may be closed automatically after 7 more days and reopened for other contributors.
— QyverixAI Maintainer Bot
close-issue-message: |
This issue was closed automatically due to inactivity.
Contributors can reopen the issue or comment `/assign` if they want to continue working on it 🚀
# =========================
# Pull Requests
# =========================
days-before-pr-stale: 7
days-before-pr-close: 7
stale-pr-label: stale
stale-pr-message: |
👋 This PR has had no activity for 7 days.
Please push updates or comment if you still need more time.
Inactive PRs may be closed automatically after 7 more days.
close-pr-message: |
This PR was closed automatically due to inactivity.
Feel free to reopen it when ready 🚀
# =========================
# Exempt labels
# =========================
exempt-issue-labels: >
pinned,
security,
in-progress,
level:advanced
exempt-pr-labels: >
pinned,
security
# Remove stale label if updated
remove-stale-when-updated: true