forked from warpdotdev/warp
-
Notifications
You must be signed in to change notification settings - Fork 154
49 lines (38 loc) · 1.78 KB
/
Copy pathstale.yml
File metadata and controls
49 lines (38 loc) · 1.78 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
name: Close stale issues and PRs
on:
schedule:
- cron: '0 2 * * *'
workflow_dispatch:
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
days-before-stale: 30
days-before-close: 7
stale-issue-label: stale
stale-pr-label: stale
stale-issue-message: |
This issue has had no activity for 30 days and is being marked as stale. It will be automatically closed in 7 days if no further updates are made. Please reply or remove the `stale` label if you'd like to keep it open.
---
本 issue 已 30 天无活动,标记为 stale。如 7 天内仍无更新将自动关闭。如仍需跟进请回复或移除 `stale` 标签。
close-issue-message: |
Closing this issue automatically due to prolonged inactivity. Feel free to reopen if the problem still exists.
---
因长期无响应自动关闭。如问题仍存在欢迎重开。
stale-pr-message: |
This PR has had no activity for 30 days and is being marked as stale. It will be automatically closed in 7 days if no further updates are made.
---
本 PR 已 30 天无活动,标记为 stale。如 7 天内仍无更新将自动关闭。
close-pr-message: |
Closing this PR automatically due to prolonged inactivity. Feel free to reopen if you'd like to continue the work.
---
因长期无响应自动关闭。如需继续推进欢迎重开。
exempt-issue-labels: "pinned,security,roadmap,keep-open"
exempt-pr-labels: "pinned,security,keep-open"
exempt-all-milestones: true
operations-per-run: 100