Add inputs to product update form

Add product vendor and product name inputs to the update form. This
will ensure that even if a submitter does not update the title we
capture this information.
pull/394/head
Nicholas McDonnell 2 years ago
parent abc70b1787
commit df6ac39083
No known key found for this signature in database
GPG Key ID: 7994ADE2A56BE5D1
  1. 16
      .github/ISSUE_TEMPLATE/product-update-form.yml

@ -3,6 +3,22 @@ name: Update a Product
description: Update information about a product in the database
title: "[Product Update]: <vendor> - <product>"
body:
- type: input
id: product-vendor
attributes:
label: Product vendor
description: Who is the vendor for the product?
placeholder: Cisco, Dell, IBM, etc.
validations:
required: true
- type: input
id: product-name
attributes:
label: Product name
description: What is the name of the product?
placeholder: AppDynamics, BigFix Inventory, Centera, etc.
validations:
required: true
- type: textarea
id: update-context
attributes:

Loading…
Cancel
Save