From 87e9a3e4ce449dc65865aec758a33e915bc6d6ff Mon Sep 17 00:00:00 2001 From: Ian Sutherland <ian@iansutherland.ca> Date: Wed, 24 Jul 2019 16:59:19 -0600 Subject: [PATCH 1/4] Add question issue template --- .github/CODEOWNERS | 2 +- .github/ISSUE_TEMPLATE/bug_report.md | 6 ++---- .github/ISSUE_TEMPLATE/proposal.md | 2 +- .github/ISSUE_TEMPLATE/question.md | 13 +++++++++++++ 4 files changed, 17 insertions(+), 6 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/question.md diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index ebb18e940..2308496a6 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,2 +1,2 @@ -packages/ @amyrlam @bugzpodder @gaearon @ianschmitz @iansu @mrmckeb @petetnt @timer +packages/ @bugzpodder @ianschmitz @iansu @mrmckeb @petetnt docusaurus/ @amyrlam @iansu diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index ac73b33e7..aec756530 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,7 +1,7 @@ --- name: Bug report about: Create a report to help us improve -labels: 'issue: bug' +labels: 'issue: bug, needs triage' --- <!-- @@ -103,9 +103,7 @@ labels: 'issue: bug' (Write your steps here:) -1. -2. -3. +1. 2. 3. ### Expected behavior diff --git a/.github/ISSUE_TEMPLATE/proposal.md b/.github/ISSUE_TEMPLATE/proposal.md index d6f97aa64..0318fa736 100644 --- a/.github/ISSUE_TEMPLATE/proposal.md +++ b/.github/ISSUE_TEMPLATE/proposal.md @@ -1,7 +1,7 @@ --- name: Proposal about: Suggest an idea for improving Create React App -labels: 'issue: proposal' +labels: 'issue: proposal, needs triage' --- ### Is your proposal related to a problem? diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 000000000..147ea1dc4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,13 @@ +--- +name: Question +about: Get help with Create React App +labels: 'needs triage' +--- + +If you have a general question about Create React App or about building an app with Create React App we encourage you to post on our Spectrum community instead of this issue tracker. The maintainers and other community members can provide help and answer your questions there: https://spectrum.chat/create-react-app + +If you're looking for general information on using React, the React docs have a list of resources: https://reactjs.org/community/support.html + +If you've discovered a bug or would like to propose a change please use one of the other issue templates. + +Thanks! -- GitLab From 59846030e424d3647c1fff2516a2c659eb22b86e Mon Sep 17 00:00:00 2001 From: Ian Sutherland <ian@iansutherland.ca> Date: Thu, 25 Jul 2019 10:09:54 -0600 Subject: [PATCH 3/4] Fix bug report template formatting --- .github/ISSUE_TEMPLATE/bug_report.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index aec756530..ac2eebaa4 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -103,7 +103,9 @@ labels: 'issue: bug, needs triage' (Write your steps here:) -1. 2. 3. +1. +2. +3. ### Expected behavior -- GitLab From 7dd6f44971cb2d0e7f29f068a0bb8f0b61650bbc Mon Sep 17 00:00:00 2001 From: Ian Sutherland <ian@iansutherland.ca> Date: Thu, 25 Jul 2019 10:27:06 -0600 Subject: [PATCH 4/4] Add labels to pull request template --- .github/PULL_REQUEST_TEMPLATE.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 45268d0b6..e4735ea78 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,3 +1,7 @@ +--- +labels: 'needs triage' +--- + <!-- Thank you for sending the PR! -- GitLab