forked from microsoft/BCApps
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add bug report for contribution bugs (microsoft#734)
<!-- Thank you for submitting a Pull Request. If you're new to contributing to BCApps please read our pull request guideline below * https://github.com/microsoft/BCApps/Contributing.md --> #### Summary <!-- Provide a general summary of your changes --> Add bug report for contribution bugs i.e. bugs discovered in the process of contributing to BCApps #### Work Item(s) <!-- Add the issue number here after the #. The issue needs to be open and approved. Submitting PRs with no linked issues or unapproved issues is highly discouraged. --> Fixes [AB#506513](https://dynamicssmb2.visualstudio.com/1fcb79e7-ab07-432a-a3c6-6cf5a88ba4a5/_workitems/edit/506513)
- Loading branch information
1 parent
5943869
commit 9386838
Showing
2 changed files
with
55 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |