From 6d6dd601358ff55e1596bcd7bc1012250dc01928 Mon Sep 17 00:00:00 2001 From: Rodrigo Gomez Palacio Date: Mon, 3 Oct 2022 17:18:45 -0500 Subject: [PATCH] Add Github Issue Templates --- .github/ISSUE_TEMPLATE.md | 0 .github/ISSUE_TEMPLATE/ask-question.yml | 19 +++++++++ .github/ISSUE_TEMPLATE/bug-report.yml | 46 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/general-feedback.yml | 19 +++++++++ 4 files changed, 84 insertions(+) mode change 100644 => 100755 .github/ISSUE_TEMPLATE.md create mode 100644 .github/ISSUE_TEMPLATE/ask-question.yml create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yml create mode 100644 .github/ISSUE_TEMPLATE/general-feedback.yml diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md old mode 100644 new mode 100755 diff --git a/.github/ISSUE_TEMPLATE/ask-question.yml b/.github/ISSUE_TEMPLATE/ask-question.yml new file mode 100644 index 0000000..d7f52e1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/ask-question.yml @@ -0,0 +1,19 @@ +name: 🙋 Ask a question +description: Tell us what's on your mind +title: "[question]: " +labels: ["triage"] +assignees: + - OneSignal/eng-developer-sdk +body: + - type: markdown + attributes: + value: | + Having issues integrating the plugin? + - type: textarea + id: question + attributes: + label: How can we help? + description: Specific question regarding integrating this plugin. + placeholder: How do I...? + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 0000000..1083c43 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,46 @@ +name: 🪳 Bug report +description: File a bug report +title: "[Bug]: " +labels: ["bug", "triage"] +assignees: + - OneSignal/eng-developer-sdk +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Provide a thorough description of whats going on. + placeholder: The latest version of the plugin causes a runtime error. + validations: + required: true + - type: textarea + id: reproduction-steps + attributes: + label: Steps to reproduce? + description: Provide as much detail as posible to reproduce the issue. + placeholder: | + 1. Install and set up the plugin (version X.Y.Z), etc... + 2. Visit website + 3. Click on the notification prompt + 4. Note that this causes a runtime error and a failed subscription. + render: Markdown + validations: + required: true + - type: textarea + id: what-are-expectations + attributes: + label: What did you expect to happen? + description: Also tell us, what did you expect to happen? + placeholder: I expected the notification prompt to cause a native permission change in the browser. + validations: + required: true + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: Shell diff --git a/.github/ISSUE_TEMPLATE/general-feedback.yml b/.github/ISSUE_TEMPLATE/general-feedback.yml new file mode 100644 index 0000000..5e679ed --- /dev/null +++ b/.github/ISSUE_TEMPLATE/general-feedback.yml @@ -0,0 +1,19 @@ +name: 📣 General feedback +description: Tell us what's on your mind +title: "[Bug]: " +labels: ["triage"] +assignees: + - OneSignal/eng-developer-sdk +body: + - type: markdown + attributes: + value: | + Thanks for sharing your valuable feedback! + - type: textarea + id: feedback + attributes: + label: What's on your mind? + description: Feedback regarding this SDK. + placeholder: Share your feedback... + validations: + required: true