From 65bf8a22997c518bef5d1e216f6e375e9ef773a0 Mon Sep 17 00:00:00 2001 From: dabao1955 Date: Fri, 1 Sep 2023 20:00:59 +0800 Subject: [PATCH] Update issue temple (#1018) Co-authored-by: Alessandro Astone --- .github/ISSUE_TEMPLATE/bug_report.md | 40 ------------ .github/ISSUE_TEMPLATE/bug_report.yml | 71 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 ------ .github/ISSUE_TEMPLATE/feature_request.yml | 38 ++++++++++++ 4 files changed, 109 insertions(+), 60 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 9e651f3..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: '' -assignees: '' - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**General information (please complete the following information):** - - Waydroid tools Version [e.g. 1.1.0] - - Waydroid Images Version [e.g. VANILLA 20211021], or `system_datetime`/`vendor_datetime` from `/var/lib/waydroid/waydroid.cfg` - -**Desktop (please complete the following information):** - - OS: [e.g. Ubuntu 20.04 x64] - - GPU: [e.g. AMD Radeon™ RX 5700] - - Kernel version: [e.g. Generic 5.4.x] - - Host mesa version: [e.g. mesa 2.2] - - Desktop: [e.g. Gnome 40.x.x] - -**Smartphone (please complete the following information):** - - Device: [e.g. Pixel 3a] - - OS: [e.g. Ubuntu touch OTA19] - - Mainline or Halium [e.g. Halium 9] - - Kernel version: [e.g. 4.14.x] - -**Additional context** -Add any other context about the problem here. - -**Logs (please upload as file)** - - Prop file, located at `/var/lib/waydroid/waydroid.prop`. In case that doesn't exist, use `/var/lib/waydroid/waydroid_base.prop` instead - - Log file, located at `/var/lib/waydroid/waydroid.log` - - *Full* (not partial) output of `waydroid logcat` while Waydroid is running - - Output of `dmesg` diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..f08900c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,71 @@ +name: Bug Report +description: "Create a report to help us improve." +title: "[BUG]" + +body: + - type: textarea + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. Attach screenshots if useful. + validations: + required: true + + - type: input + attributes: + label: Waydroid version + description: Output of `waydroid --version` + placeholder: "Example: 1.4.0" + validations: + required: true + + - type: dropdown + attributes: + label: Device + options: + - Linux Desktop + - Linux Smartphone + - Halium Smartphone + validations: + required: true + + - type: input + attributes: + label: Operating System + placeholder: "Example: Ubuntu 20.04 amd64" + validations: + required: true + + - type: input + attributes: + label: Kernel version + description: Output of `uname --kernel-release` + placeholder: "Example: 5.19.0-38-generic" + validations: + required: true + + - type: input + attributes: + label: Desktop Environment + placeholder: "Example: GNOME 40" + validations: + required: true + + - type: input + attributes: + label: GPU + placeholder: "Example: AMD Radeon™ RX 5700" + validations: + required: true + + - type: textarea + attributes: + label: "Logs" + description: Attach the following files + value: | + /var/lib/waydroid/waydroid.prop + /var/lib/waydroid/waydroid_base.prop + /var/lib/waydroid/waydroid.log + `sudo waydroid logcat | tee logcat.txt` + `sudo dmesg | tee dmesg.txt` + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index bbcbbe7..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: '' -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. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..5657326 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,38 @@ +name: Feature Request +description: "Suggest an idea for this project" +title: "[Feature]" +labels: "feature" +body: + - type: markdown + id: feature-info + attributes: + value: "## Feature Infomation" + - type: textarea + id: feature-main + validations: + required: true + attributes: + label: "Is your feature request related to a problem? Please describe." + description: "A clear and concise description of what the problem is." + placeholder: "I'm always frustrated when [...]" + - type: textarea + id: feature-solution + validations: + required: true + attributes: + label: "Describe the solution you'd like." + description: "A clear and concise description of what you want to happen." + - type: textarea + id: feature-describe + validations: + required: true + attributes: + label: "Describe alternatives you've considered." + description: "A clear and concise description of any alternative solutions or features you've considered." + - type: textarea + id: feature-extra + validations: + required: false + attributes: + label: "Additional context" + description: "Add any other context or screenshots about the feature request here." -- 2.47.3