You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/_close_inactive_issue_pr.yml
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,12 @@ on:
3
3
schedule:
4
4
- cron: "30 1 * * *"
5
5
workflow_call:
6
+
inputs:
7
+
exempt-pr-labels:
8
+
description: "Comma-separated list of PR labels to exempt from stale checks"
9
+
required: false
10
+
default: "community-request"
11
+
type: string
6
12
7
13
jobs:
8
14
close-issues:
@@ -15,12 +21,13 @@ jobs:
15
21
with:
16
22
operations-per-run: 100
17
23
days-before-issue-stale: 30
18
-
days-before-issue-close: 7
24
+
days-before-issue-close: 7
19
25
stale-issue-label: "stale"
20
26
stale-issue-message: "This issue is stale because it has been open for 30 days with no activity. Remove stale label or comment or this will be closed in 7 days."
21
27
close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale."
22
-
days-before-pr-stale: 14
23
-
days-before-pr-close: 7
28
+
days-before-pr-stale: 14
29
+
days-before-pr-close: 7
24
30
stale-pr-message: "This PR is stale because it has been open for 14 days with no activity. Remove stale label or comment or update or this will be closed in 7 days."
25
31
close-pr-message: "This PR was closed because it has been inactive for 7 days since being marked as stale."
0 commit comments