From 74b5f798cd22fa6b8911cdab2561efcf87cf0041 Mon Sep 17 00:00:00 2001 From: Manuel Rego Casasnovas Date: Fri, 15 Mar 2024 13:18:47 +0100 Subject: [PATCH] Add issue templates (#31693) * Add issue templates This will allow to label new issues when filled depending on their type. * Update .github/ISSUE_TEMPLATE/bug_report.md Co-authored-by: Martin Robinson * Update .github/ISSUE_TEMPLATE/bug_report.md Co-authored-by: Martin Robinson * Update .github/ISSUE_TEMPLATE/bug_report.md Co-authored-by: Martin Robinson * Update .github/ISSUE_TEMPLATE/feature_request.md Co-authored-by: Martin Robinson * Update .github/ISSUE_TEMPLATE/feature_request.md Co-authored-by: Martin Robinson * Update .github/ISSUE_TEMPLATE/feature_request.md Co-authored-by: Martin Robinson * Update .github/ISSUE_TEMPLATE/security-report.md Co-authored-by: Martin Robinson * Update .github/ISSUE_TEMPLATE/security-report.md Co-authored-by: Martin Robinson * Update .github/ISSUE_TEMPLATE/security-report.md Co-authored-by: Martin Robinson * Fix typo --------- Co-authored-by: Martin Robinson --- .github/ISSUE_TEMPLATE/bug_report.md | 17 +++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 11 +++++++++++ .github/ISSUE_TEMPLATE/security-report.md | 17 +++++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/security-report.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000000..090cd0c1a7e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,17 @@ +--- +name: Bug Report +about: Create a bug report to help us improve +title: '' +labels: C-untriaged +assignees: '' + +--- + +**Describe the bug:** +A clear and concise description of the bug. + +**To Reproduce:** +Steps to reproduce the behavior. + +**Platform:** +Specify OS, distribution, and hardware platform. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000000..e48216e8f85 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,11 @@ +--- +name: Feature Request +about: Suggest the implementation of a new feature +title: '' +labels: B-feature-tracking, C-untriaged +assignees: '' + +--- + +**Describe the new feature:** +A clear and concise description of the new feature with links to any relevant specifications. diff --git a/.github/ISSUE_TEMPLATE/security-report.md b/.github/ISSUE_TEMPLATE/security-report.md new file mode 100644 index 00000000000..c6e7535fff0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/security-report.md @@ -0,0 +1,17 @@ +--- +name: Security Vulernability +about: Report a security vulnerability +title: '' +labels: A-security, C-untriaged +assignees: '' + +--- + +**Describe the bug:** +A clear and concise description of the vulnerability. + +**To Reproduce:** +Steps to reproduce the behavior. + +**Platform:** +Specify OS, distribution, and hardware platform.