From 9386838d3c0fe8ebf0afd543b88f91d68a334889 Mon Sep 17 00:00:00 2001 From: Alexander Holstrup <117829001+aholstrup1@users.noreply.github.com> Date: Fri, 15 Mar 2024 10:49:57 +0100 Subject: [PATCH] Add bug report for contribution bugs (#734) #### Summary Add bug report for contribution bugs i.e. bugs discovered in the process of contributing to BCApps #### Work Item(s) Fixes [AB#506513](https://dynamicssmb2.visualstudio.com/1fcb79e7-ab07-432a-a3c6-6cf5a88ba4a5/_workitems/edit/506513) --- .github/ISSUE_TEMPLATE/config.yml | 2 +- .github/ISSUE_TEMPLATE/contribution_bug.yaml | 54 ++++++++++++++++++++ 2 files changed, 55 insertions(+), 1 deletion(-) create mode 100644 .github/ISSUE_TEMPLATE/contribution_bug.yaml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 41f81c4569..aadf474734 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -3,6 +3,6 @@ contact_links: - name: Request a feature url: https://aka.ms/bcideas about: Please go to https://aka.ms/bcideas to log your idea. Creating an issue here is not the right way. - - name: Report a bug + - name: Report a bug in the product url: https://aka.ms/bcsupport?#bugs about: Please follow the steps on https://aka.ms/bcsupport to get support. Creating an issue here is not the right way. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/contribution_bug.yaml b/.github/ISSUE_TEMPLATE/contribution_bug.yaml new file mode 100644 index 0000000000..d2d46451d2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/contribution_bug.yaml @@ -0,0 +1,54 @@ +name: Report a bug in the contribution process +description: Report a bug in the contribution process +title: "[Contribution Process Bug]: " +labels: ["Contribution-Bug"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + + This bug report is intended for reporting issues in the contribution process such as: + ✅ Documentation defects in this repository + ✅ Tooling defects (e.g. Creating development environments, building apps, etc.) + ✅ Other defects in the contribution process to this repository + + This bug report is **not** intended for + 🛑 Product defects of any kind + + Before you create a new issue, please check the following: + 🔎 Search existing issues to avoid creating duplicates. + + Read more about what and how to contribute in the CONTRIBUTIONS document of this repository: https://github.com/microsoft/BCApps/blob/main/CONTRIBUTING.md. + - type: textarea + id: describe-the-issue + attributes: + label: Describe the issue + description: A clear and concise description of what the issue is + placeholder: Describe the issue + validations: + required: true + - type: textarea + id: expected-behavior + attributes: + label: Expected behavior + description: Describe what behavior you expected + placeholder: Expected behavior + validations: + required: true + - type: textarea + id: steps-to-reproduce + attributes: + label: Steps to reproduce + description: List of steps to reproduce + placeholder: Steps to reproduce + validations: + required: true + - type: textarea + id: additional-context + attributes: + label: Additional context + description: If needed add any other context about the problem here or include screenshots + placeholder: Additional context, screenshots, log output, etc. + validations: + required: false \ No newline at end of file