Use an issue form for product submissions

Switch to using a GitHub Issues form for product submission issues. This
will provide a smoother interface for users to submit products to the
database and ensure that certain values are included with a submission.
pull/394/head
Nicholas McDonnell 2 years ago
parent 07a7057773
commit 6a09fd70f7
No known key found for this signature in database
GPG Key ID: 7994ADE2A56BE5D1
  1. 27
      .github/ISSUE_TEMPLATE/product-submission-template.md
  2. 73
      .github/ISSUE_TEMPLATE/product-submission-template.yml

@ -1,27 +0,0 @@
---
name: Product Submission Template
about: Template for product submissions of all publicly available information
and vendor-supplied advisories regarding the log4j vulnerability.
---
# Submission Template #
Please provide the following information.
- Vendor Name
- Product Name
- Version(s) affected
- Status: Please choose from one of the following - Unknown, Affected,
Not Affected, Fixed, and Under Investigation.
- Update Available: Yes or No (If Yes, please provide link to information)
- Notes
- References
- Last Updated: Date of last update
For questions about choice for status, please see the information below.
- Unknown - Status unknown. Default choice.
- Affected - Reported to be affected by CVE-2021-44228.
- Not Affected - Reported to NOT be affected by CVE-2021-44228 and no further
action necessary.
- Fixed - Patch and/or mitigations available (see provided links).
- Under Investigation - Vendor investigating status.

@ -0,0 +1,73 @@
---
name: Submit a Product
description: Submit a product to the database
title: "[Product Submission]: <vendor> - <product>"
body:
- type: markdown
attributes:
value: |
For questions about choice for status, please see the information below.
- Unknown - Status unknown. Default choice.
- Affected - Reported to be affected by CVE-2021-44228.
- Not Affected - Reported to NOT be affected by CVE-2021-44228 and no
further action necessary.
- Fixed - Patch and/or mitigations available (see provided links).
- Under Investigation - Vendor investigating status.
- type: input
id: product-vendor
attributes:
label: Product vendor
description: Who is the vendor for the product?
validations:
required: true
- type: input
id: product-name
attributes:
label: Product name
description: What is the product?
validations:
required: true
- type: input
id: product-versions
attributes:
label: Product version(s)
description: What version(s) of the product are affected?
validations:
required: true
- type: dropdown
id: product-status
attributes:
label: Product status
description: What is the current status of the affected product?
options:
- Unknown
- Affected
- Not Affected
- Fixed
- Under Investigation
validations:
required: true
- type: dropdown
id: product-updated
attributes:
label: Product update available
description: Is there an update available for the product?
options:
- "Yes"
- "No"
validations:
required: true
- type: input
id: product-update-link
attributes:
label: Product update link
description: If an update is available where can it be found?
- type: textarea
id: product-notes
attributes:
label: Notes
- type: textarea
id: product-references
attributes:
label: References
Loading…
Cancel
Save