From fc1f81dc166add4e787e45ef253ebc5d07d5474b Mon Sep 17 00:00:00 2001 From: Yuki Okushi <huyuumi.dev@gmail.com> Date: Thu, 22 Oct 2020 16:05:09 +0900 Subject: [PATCH] Add issue templates with new style --- .github/ISSUE_TEMPLATE/api_request.md | 20 +++++++++++++++++++ .../bug_report.md} | 17 ++++++++-------- 2 files changed, 28 insertions(+), 9 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/api_request.md rename .github/{issue_template.md => ISSUE_TEMPLATE/bug_report.md} (77%) diff --git a/.github/ISSUE_TEMPLATE/api_request.md b/.github/ISSUE_TEMPLATE/api_request.md new file mode 100644 index 00000000..871e1b1c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/api_request.md @@ -0,0 +1,20 @@ +--- +name: API request +about: Send a API request for the libc crate. +labels: C-API-request +--- + +<!-- +Please provide the below information: + +* the target triple +* link to the documentation of the API showing the type signatures, how to use + it, etc. + +In general, just please consider that the people who can help you are all very +busy, they will be helping you in their free time, there are a lot of people in +need of help so they need to prioritize to which issues they devote their free +time, etc. So try to give most of the information upfront, be concise, show +small self-contained examples (nobody has time to create a new cargo project, +set up dependencies,...), etc. Help us help you. +--> diff --git a/.github/issue_template.md b/.github/ISSUE_TEMPLATE/bug_report.md similarity index 77% rename from .github/issue_template.md rename to .github/ISSUE_TEMPLATE/bug_report.md index 435bf35c..1946200a 100644 --- a/.github/issue_template.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,7 +1,11 @@ -<!-- -**Help us help you.** +--- +name: Bug Report +about: Create a bug report for the libc crate. +labels: C-bug +--- -If you are reporting a bug, include: +<!-- +Please provide the below information: * a Minimum Working Example without any dependencies (except libc) that shows the issue and ideally reproduces in the Rust playground @@ -9,16 +13,11 @@ If you are reporting a bug, include: * instructions to reproduce, logs (e.g. build logs, links to Travis-CI logs, uploads to github gists, etc.). -If you are requesting a new API, include: - -* the target triple -* link to the documentation of the API showing the type signatures, how to use - it, etc. - In general, just please consider that the people who can help you are all very busy, they will be helping you in their free time, there are a lot of people in need of help so they need to prioritize to which issues they devote their free time, etc. So try to give most of the information upfront, be concise, show small self-contained examples (nobody has time to create a new cargo project, set up dependencies,...), etc. Help us help you. + --> -- GitLab