From e3eafcd35b8335351a9dcaf6a98c03967d49f7e0 Mon Sep 17 00:00:00 2001 From: Louis Abel Date: Tue, 12 Jul 2022 11:06:59 -0700 Subject: [PATCH] add issue templates --- .github/ISSUE_TEMPLATE/bug.yml | 56 +++++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + .github/ISSUE_TEMPLATE/rfe.yml | 48 ++++++++++++++++++++++++++ 3 files changed, 105 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/rfe.yml diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 0000000..b33fdb8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,56 @@ +name: Bug Report +description: Create a bug report to help us improve Peridot! +labels: bug +assignees: + - mstg + - NeilHanlon + - nazunalika + +body: + - type: markdown + attributes: + value: | + Thank you for taking the time to fill out this bug report! It really helps us out! + + - type: textarea + id: describe-bug + attributes: + label: Describe The Bug + description: Provide a clear and concise description of what the bug is + validations: + required: true + + - type: textarea + id: reproduction-steps + attributes: + label: Reproduction Steps + description: Steps to reproduce the behavior you are seeing + value: | + 1. + 2. + 3. + . . . + validations: + required: true + + - type: textarea + id: expected-behavior + attributes: + label: Expected Behavior + description: Provide a clear and concise description of what you expected to happen + validations: + required: true + + - type: textarea + id: version-build-info + attributes: + label: Version and Build Information + description: Provide Peridot/Utility version and build information + validations: + required: true + + - type: textarea + id: additional-context + attributes: + label: Additional context + description: Add any other context about the problem here diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..3ba13e0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/.github/ISSUE_TEMPLATE/rfe.yml b/.github/ISSUE_TEMPLATE/rfe.yml new file mode 100644 index 0000000..242f77e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/rfe.yml @@ -0,0 +1,48 @@ +name: Request for Enhancement +description: Suggest an idea or an enhancement for Peridot +labels: enhancement +assignees: + - mstg + - NeilHanlon + - nazunalika + +body: + - type: textarea + id: describe-problem + attributes: + label: Is this feature request related to a problem? If so, please describe it. + description: Provide a clear and concise description of what the problem is. + validations: + required: true + + - type: textarea + id: describe-solution + attributes: + label: Describe the solution you'd like to see + description: Provide a clear and concise description of what you want to happen. + validations: + required: true + + - type: textarea + id: describe-alternatives + attributes: + label: Have you considered alternative solutions/features? If so, please describe them. + description: Provide a clear and concise description of any alternative solutions or features you've considered. + validations: + required: false + + - type: textarea + id: version-build-info + attributes: + label: Version and Build Information + description: Provide Peridot/Utility version and build information + validations: + required: true + + - type: textarea + id: additional-context + attributes: + label: Additional Context + description: Provide any other context, such as screenshots, logs, mock-ups, and so on. + validations: + required: false