diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 31ebec5d..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -name: "🐞 Bug report" -about: Create a report to help us improve -title: '' -labels: "🐞 bug" -assignees: '' - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Device Information [optional]:** -- OS: [e.g. iOS] -- Browser [e.g. chrome, safari] -- Version [e.g. 22] - -**Additional context** -Add any other context about the problem here. - -**Are you working on this issue? (Yes/No)** diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..a2893980 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,91 @@ +name: 🐞 Bug +description: Create a report to help us improve +title: "🐞 Bug" +labels: ["🐞 bug", "pending triage"] +body: +- type: checkboxes + attributes: + label: Is there an existing issue for this? + description: Please search to see if an issue already exists for the bug you encountered + options: + - label: I have searched the existing issues + required: true +- type: textarea + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is + validations: + required: true +- type: textarea + attributes: + label: Steps To Reproduce + description: Steps to reproduce the behavior + placeholder: | + 1. Go to'...' + 2. Click on'...' + 3. Scroll down to'...' + 4. See error + validations: + required: true +- type: textarea + attributes: + label: Expected Behavior + description: A clear and concise description of what you expected to happen + validations: + required: true +- type: textarea + attributes: + label: Screenshots + description: | + If applicable, add screenshots to help explain your problem + Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in + validations: + required: false +- type: dropdown + attributes: + label: Is faced issue/bug related to vue simulator? + description: A clear and concise description of what you have faced issue with + validations: + required: true +- type: dropdown + attributes: + label: Used vue simulator with or without backend + description: A clear and concise description of how you used the simulator + validations: + required: false +- type: dropdown + attributes: + label: Is bug is only in dev server or build or in both? + description: A clear and concise description of how where the issue/bug is + validations: + required: false + +- type: textarea + attributes: + label: Device Information [optional] + description: | + examples: + - **OS**: Ubuntu 20.04 + - **Browser**: chrome + - **version**: 22 + value: | + - OS: + - Browser: + - version: + render: markdown + validations: + required: false +- type: input + attributes: + label: Additional context + description: Add any other context about the problem here + validations: + required: false +- type: dropdown + attributes: + label: Are you working on this issue? + options: + - 'Yes' + - 'No' + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 82aef8a9..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -name: "⭐️ Feature request" -about: Suggest an idea for this project -title: '' -labels: "🌟 feature" -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. - -**Are you working on this? (Yes/No)** \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000..4ca772fd --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,43 @@ +name: ⭐️ Feature request +description: Suggest an idea for this project +title: "Feature " +labels: ["🌟 feature", "pending triage"] +body: +- type: textarea + attributes: + label: Is your feature request related to a problem? Please describe + description: A clear and concise description of what the problem is + validations: + required: true +- type: textarea + attributes: + label: Describe the solution you'd like + description: A clear and concise description of what you want to happen + validations: + required: true +- type: textarea + attributes: + label: Describe alternatives you've considered + description: A clear and concise description of any alternative solutions or features you've considered + validations: + required: false +- type: textarea + attributes: + label: Is requested feature related to vue simulator? + description: A clear and concise description of what the feature request is for + validations: + required: true +- type: input + attributes: + label: Additional context + description: Add any other context about the problem here + validations: + required: false +- type: dropdown + attributes: + label: Are you working on this? + options: + - 'Yes' + - 'No' + validations: + required: true \ No newline at end of file