Skip to content

Commit 85538f6

Browse files
committed
GitHub issue: Set waiting-for-triage by default
We might not check issues so often recent days, so it is inappropriate to close stale issues that aren't checked by any maintainers. This commit will add waiting-for-triage label to all new issues and won't close them by default. In addition, issues that are assigned or set milestone are also exempted. Signed-off-by: Takuro Ashie <[email protected]>
1 parent ad87e73 commit 85538f6

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: Bug Report
22
description: Create a report with a procedure for reproducing the bug
3+
labels: "waiting-for-triage"
34
body:
45
- type: markdown
56
attributes:

.github/ISSUE_TEMPLATE/feature_request.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: Feature request
22
description: Suggest an idea for this project
3+
labels: "waiting-for-triage"
34
body:
45
- type: markdown
56
attributes:

.github/workflows/stale-actions.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,7 @@ jobs:
1818
close-pr-message: "This PR was automatically closed because of stale in 30 days"
1919
stale-pr-label: "stale"
2020
stale-issue-label: "stale"
21-
exempt-issue-labels: "bug,enhancement,help wanted"
22-
exempt-pr-labels: "bug,enhancement,help wanted"
21+
exempt-issue-labels: "bug,enhancement,help wanted,waiting-for-triage"
22+
exempt-pr-labels: "bug,enhancement,help wanted,waiting-for-triage"
23+
exempt-all-assignees: true
24+
exempt-all-milestones: true

0 commit comments

Comments
 (0)