diff options
author | Vir Linden <60274682+vir-linden@users.noreply.github.com> | 2024-01-29 10:44:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-29 10:44:57 -0500 |
commit | 8b030795bed8f487fdf0bb1d4d3cb5b86d513840 (patch) | |
tree | e9ae1f5f8dcb7d45cae63086655368d799b1ef7b | |
parent | 77395eddc911e0801e50fd693f7bbaee8046aa95 (diff) | |
parent | cb14e9a074ef415d7856a2067edec7b88570bf9e (diff) |
Merge pull request #666 from secondlife/issue_templates
Issue templates
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug.yaml | 36 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/enhancement.md | 12 |
2 files changed, 48 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml new file mode 100644 index 0000000000..224a5bbde6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -0,0 +1,36 @@ +name: Bug report +description: Viewer bug report +labels: [bug] +body: +- type: markdown + attributes: + value: | + - Write a descriptive bug title above. + - Search [open](https://github.com/secondlife/viewer/issues?q=is%3Aopen+label%3Abug+is%3Aissue) bugs to ensure that the issue has not already been identified. + +- type: textarea + attributes: + label: Environment + description: About Second Life Text + placeholder: ex. Second Life Test 7.1.3.240191747 (64bit) ... + validations: + required: true + +- type: textarea + attributes: + label: Description + description: Explain the problem. + validations: + required: true + +- type: textarea + attributes: + label: Reproduction steps + description: Steps to reproduce this bug + placeholder: | + 1. First step + 2. Second step + Expected: ... + Actual: ... + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/enhancement.md b/.github/ISSUE_TEMPLATE/enhancement.md new file mode 100644 index 0000000000..dbb6f4601d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/enhancement.md @@ -0,0 +1,12 @@ +--- +name: Enhancement +about: New feature or enhancement +title: New Feature +labels: enhancement +--- + +_What does this feature/enhancement do? Why is it needed?_ + +## Test Plan + +_Include information, such as guidance and test scenarios, QA will need to test this feature._ |