From fb24d1e2dddde17e6d76a3ca3f1eebf46b356ae1 Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Fri, 9 Feb 2024 21:51:21 +0100 Subject: [PATCH] Add issue templates --- .github/ISSUE_TEMPLATE/bug_macos.yml | 37 ++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/bug_wayland.yml | 31 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/bug_web.yml | 36 +++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 5 ++++ 4 files changed, 109 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_macos.yml create mode 100644 .github/ISSUE_TEMPLATE/bug_wayland.yml create mode 100644 .github/ISSUE_TEMPLATE/bug_web.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/bug_macos.yml b/.github/ISSUE_TEMPLATE/bug_macos.yml new file mode 100644 index 00000000000..4d15b36c8f7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_macos.yml @@ -0,0 +1,37 @@ +name: MacOS bug +description: Create a macOS-specific bug report +labels: + - B - bug + - DS - macos +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: textarea + id: description + attributes: + label: Description + description: Description of the problem you're having + validations: + required: true + - type: textarea + id: os-version + attributes: + label: macOS version + description: What version of macOS are you using? Please paste in the output of `sw_vers`. + placeholder: | + ProductName: macOS + ProductVersion: 14.2.1 + BuildVersion: 23C71 + render: shell + validations: + required: true + - type: textarea + id: winit-version + attributes: + label: Winit version + description: What version of Winit are you using? + placeholder: 0.29.10 + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/bug_wayland.yml b/.github/ISSUE_TEMPLATE/bug_wayland.yml new file mode 100644 index 00000000000..f21e36f6ae8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_wayland.yml @@ -0,0 +1,31 @@ +name: Wayland bug +description: Create a Wayland-specific bug report +labels: + - B - bug + - DS - wayland +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: textarea + id: description + attributes: + label: Description + description: Description of the problem you're having + validations: + required: true + - type: checkboxes + attributes: + label: Window isn't shown unless you draw + options: + - label: I understand that windows aren't shown on Wayland unless you draw to them. + required: true + - type: textarea + id: winit-version + attributes: + label: Winit version + description: What version of Winit are you using? + placeholder: 0.29.10 + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/bug_web.yml b/.github/ISSUE_TEMPLATE/bug_web.yml new file mode 100644 index 00000000000..19fa05b0164 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_web.yml @@ -0,0 +1,36 @@ +name: Web bug +description: Create a web-specific bug report +labels: + - B - bug + - DS - web +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: textarea + id: description + attributes: + label: Description + description: Description of the problem you're having + validations: + required: true + - type: checkboxes + id: browsers + attributes: + label: What browsers are you seeing the problem on? + options: + - label: Firefox + - label: Chrome + - label: Safari + - label: Microsoft Edge + validations: + required: true + - type: textarea + id: winit-version + attributes: + label: Winit version + description: What version of Winit are you using? + placeholder: 0.29.10 + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000000..ace54f357b0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: true +contact_links: + - name: Question + url: https://matrix.to/#/#rust-windowing:matrix.org + about: Please ask questions on the Matrix channel.