From 19256b33cc78868da2df9fa055179e8fe6282971 Mon Sep 17 00:00:00 2001 From: Taylor Jones Date: Mon, 11 Oct 2021 10:21:46 -0500 Subject: [PATCH] chore(repo): add design defect issue template (#9826) --- .github/ISSUE_TEMPLATE/DESIGN_DEFECT.yaml | 93 +++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/DESIGN_DEFECT.yaml diff --git a/.github/ISSUE_TEMPLATE/DESIGN_DEFECT.yaml b/.github/ISSUE_TEMPLATE/DESIGN_DEFECT.yaml new file mode 100644 index 000000000000..804f5e773cef --- /dev/null +++ b/.github/ISSUE_TEMPLATE/DESIGN_DEFECT.yaml @@ -0,0 +1,93 @@ +name: Design defect 🎨 +description: Report a visual design issue +title: '[Bug]: ' +labels: 'type: bug 🐛' +body: + - type: markdown + attributes: + value: '## Welcome!' + - type: markdown + attributes: + value: + Thanks for taking the time to fill out the details below for this design + defect. + - type: dropdown + id: package + attributes: + label: Package + description: Which package(s) are you using? + multiple: true + options: + - 'carbon-components' + - 'carbon-components-react' + - '@carbon/colors' + - '@carbon/elements' + - '@carbon/grid' + - '@carbon/icons' + - '@carbon/icons-react' + - '@carbon/icons-vue' + - '@carbon/layout' + - '@carbon/motion' + - '@carbon/pictograms' + - '@carbon/pictograms-react' + - '@carbon/themes' + - '@carbon/type' + - '@carbon/upgrade' + validations: + required: true + - type: dropdown + id: browser + attributes: + label: Browser + description: Which browser(s) are you experiencing the issue? + multiple: true + options: + - Chrome + - Safari + - Firefox + - Edge + - type: input + id: version + attributes: + label: Package version + description: 'Which version(s) are you using?' + placeholder: e.g. v10.42.0 + validations: + required: true + - type: textarea + id: description + attributes: + label: Description + description: "Tell us more about the problem that you're running into" + placeholder: What did you see? What did you expect to see? + validations: + required: true + - type: input + id: example-url + attributes: + label: Screenshots + description: 'Provide screenshots of the problem' + validations: + required: true + - type: textarea + id: reproduce + attributes: + label: Steps to reproduce + description: + 'How do we reproduce the problem displayed in the screenshots above?' + validations: + required: true + - type: checkboxes + id: terms + attributes: + label: Code of Conduct + description: Please confirm the following + options: + - label: + I agree to follow this project's [Code of + Conduct](https://github.com/carbon-design-system/carbon/blob/f555616971a03fd454c0f4daea184adf41fff05b/.github/CODE_OF_CONDUCT.md) + required: true + - label: + I checked the [current + issues](https://github.com/carbon-design-system/carbon/issues) for + duplicate problems