From 3213a4bd05024a2c948f81e8928293fe90d4e6a7 Mon Sep 17 00:00:00 2001 From: Justin Woodward Date: Sat, 25 Nov 2023 13:18:13 -0500 Subject: [PATCH] Add issue templates --- .github/ISSUE_TEMPLATE/BUG-REPORT.yml | 53 +++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/QUESTION.yml | 24 ++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + 3 files changed, 78 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/BUG-REPORT.yml create mode 100644 .github/ISSUE_TEMPLATE/QUESTION.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml new file mode 100644 index 000000000..be0b2b71f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml @@ -0,0 +1,53 @@ +name: Bug Report +description: File a bug report +title: "[Bug]: " +labels: ["bug"] +assignees: + - jwoo92 +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: input + id: contact + attributes: + label: Contact Details + description: How can we get in touch with you if we need more info? + placeholder: ex. email@example.com + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Also tell us, what did you expect to happen? + placeholder: Tell us what you see! + validations: + required: true + - type: input + id: affected-webpage + attributes: + label: What is the affected webpage? + placeholder: ex. database-answers.com/path/to/webpage + - type: dropdown + id: browsers + attributes: + label: What browsers are you seeing the problem on? + multiple: true + options: + - Brave + - Chrome + - Firefox + - Microsoft Edge + - Opera + - Safari + - type: dropdown + id: environments + attributes: + label: What environments are you seeing the problem on? + multiple: true + options: + - Android + - iOS + - Linux + - Mac + - Windows diff --git a/.github/ISSUE_TEMPLATE/QUESTION.yml b/.github/ISSUE_TEMPLATE/QUESTION.yml new file mode 100644 index 000000000..7f08f7e0b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/QUESTION.yml @@ -0,0 +1,24 @@ +name: Question +description: Ask an open question +title: "[Question]: " +labels: ["question"] +assignees: + - jwoo92 +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to ask an open question! + - type: input + id: contact + attributes: + label: Contact Details + description: How can we get in touch with you if we need more info? + placeholder: ex. email@example.com + - type: textarea + id: question + attributes: + label: Open Question + placeholder: I have a question about... + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..3ba13e0ce --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false