From 9438641dfdfb6b7a4dce0b890037857f8aae688c Mon Sep 17 00:00:00 2001 From: Stewie Date: Fri, 29 Jul 2022 16:30:23 -0400 Subject: [PATCH 1/2] Creating pythonlib bug template --- .github/ISSUE_TEMPLATE/1. pythonlib_bug.yaml | 45 ++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/1. pythonlib_bug.yaml diff --git a/.github/ISSUE_TEMPLATE/1. pythonlib_bug.yaml b/.github/ISSUE_TEMPLATE/1. pythonlib_bug.yaml new file mode 100644 index 0000000..2b1a869 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/1. pythonlib_bug.yaml @@ -0,0 +1,45 @@ +name: "Bug: Pythonlib" +description: When Pythonlib is not working as expected +title: "[Bug]: Pythonlib" +labels: ["pythonlib", "bug"] + +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + + Here are some usecases when you should use this template : + - Function is crashing when used inside Python + - Function is not working as expected + + - type: dropdown + id: browsers + attributes: + label: Is it related to a specific Tales of game? + multiple: false + options: + - All games + - Tales of Rebirth (PS2) + validations: + required: true + + - type: input + id: contact + attributes: + label: Contact Details + description: How can we get in touch with you if we need more info? + placeholder: Discord name + validations: + required: true + + - 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! + value: "A bug happened!" + validations: + required: true + From b94fe36b6319df7d896ee442f0187796a7dce280 Mon Sep 17 00:00:00 2001 From: Stewie Date: Fri, 29 Jul 2022 16:33:25 -0400 Subject: [PATCH 2/2] Adding pythonlib feature template --- .../ISSUE_TEMPLATE/2. pythonlib_feature.yaml | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/2. pythonlib_feature.yaml diff --git a/.github/ISSUE_TEMPLATE/2. pythonlib_feature.yaml b/.github/ISSUE_TEMPLATE/2. pythonlib_feature.yaml new file mode 100644 index 0000000..739cb07 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/2. pythonlib_feature.yaml @@ -0,0 +1,41 @@ +name: "Feature request: Pythonlib" +description: "When a developer wants a new feature inside Pythonlib" +title: "[Feature]: Your short description here" +labels: ["feature","pythonlib"] + +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this feature request! + + This template should be used when you want a new feature available + in Pythonlib. + - type: dropdown + id: browsers + attributes: + label: Is it related to a specific Tales of game? + multiple: false + options: + - All games + - Tales of Rebirth (PS2) + validations: + required: true + - type: input + id: contact + attributes: + label: Contact Details + description: How can we get in touch with you if we need more info? + placeholder: Discord name + validations: + required: true + + - type: textarea + id: description + attributes: + label: What is your request? + description: Insert any screenshots/diagrams that might be usefull + placeholder: "Describe the new feature here" + validations: + required: true +