Skip to content

Commit

Permalink
GitHub issue: Set waiting-for-triage by default
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
ashie committed Dec 19, 2022
1 parent ad87e73 commit 85538f6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: Bug Report
description: Create a report with a procedure for reproducing the bug
labels: "waiting-for-triage"
body:
- type: markdown
attributes:
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: Feature request
description: Suggest an idea for this project
labels: "waiting-for-triage"
body:
- type: markdown
attributes:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/stale-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,7 @@ jobs:
close-pr-message: "This PR was automatically closed because of stale in 30 days"
stale-pr-label: "stale"
stale-issue-label: "stale"
exempt-issue-labels: "bug,enhancement,help wanted"
exempt-pr-labels: "bug,enhancement,help wanted"
exempt-issue-labels: "bug,enhancement,help wanted,waiting-for-triage"
exempt-pr-labels: "bug,enhancement,help wanted,waiting-for-triage"
exempt-all-assignees: true
exempt-all-milestones: true

0 comments on commit 85538f6

Please sign in to comment.