From 621e67479d22f9b2acca4429dac109f4f5b96eef Mon Sep 17 00:00:00 2001 From: Wladimir Kirianov Date: Thu, 28 Jul 2022 10:13:34 +0200 Subject: [PATCH 1/6] Create CODE_OF_CONDUCT.md --- .github/CODE_OF_CONDUCT.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/CODE_OF_CONDUCT.md diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/.github/CODE_OF_CONDUCT.md @@ -0,0 +1 @@ + From a7e4b354a42254e2fda7682b0bd20032b24c1e4b Mon Sep 17 00:00:00 2001 From: Wladimir Kirianov Date: Thu, 28 Jul 2022 10:13:48 +0200 Subject: [PATCH 2/6] Create CONTRIBUTING.md --- .github/CONTRIBUTING.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/CONTRIBUTING.md diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1 @@ + From 756f44a319c679a53bf0209c256cf928fb46e138 Mon Sep 17 00:00:00 2001 From: Wladimir Kirianov Date: Thu, 28 Jul 2022 10:17:53 +0200 Subject: [PATCH 3/6] Add Bug Report Template --- .github/ISSUE_TEMPLATE/BUG-REPORT.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/ISSUE_TEMPLATE/BUG-REPORT.yml diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml @@ -0,0 +1 @@ + From cf36646b7d874f0063d419820a3cda4feee54198 Mon Sep 17 00:00:00 2001 From: Wladimir Kirianov Date: Thu, 28 Jul 2022 10:51:55 +0200 Subject: [PATCH 4/6] Create Bug_Report Issues Template --- .github/ISSUE_TEMPLATE/BUG-REPORT.yml | 1 - .github/ISSUE_TEMPLATE/BUG_REPORT.yml | 78 +++++++++++++++++++++++++++ 2 files changed, 78 insertions(+), 1 deletion(-) delete mode 100644 .github/ISSUE_TEMPLATE/BUG-REPORT.yml create mode 100644 .github/ISSUE_TEMPLATE/BUG_REPORT.yml diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml deleted file mode 100644 index 8b137891..00000000 --- a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml +++ /dev/null @@ -1 +0,0 @@ - diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.yml b/.github/ISSUE_TEMPLATE/BUG_REPORT.yml new file mode 100644 index 00000000..3b9c6bea --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.yml @@ -0,0 +1,78 @@ +name: Bug report +description: Create a report to help us improve existing features +labels: ["Type: Possible bug"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: checkboxes + id: checklist + attributes: + label: Checklist + options: + - label: I have used the search function for [open](https://github.com/AntennaPod/AntennaPod/issues) **and** [closed](https://github.com/AntennaPod/AntennaPod/issues?q=is%3Aissue+is%3Aclosed) issues to see if someone else has already submitted the same bug report. + required: true + - label: I will describe the problem with as much detail as possible. + required: true + - label: If the bug only occurs with a certain link, post, image..., I will include the URL. + required: true + - type: input + id: version + attributes: + label: App version + description: We need the actual version number found on the settings screen. + placeholder: x.y.z + validations: + required: true + - type: dropdown + id: source + attributes: + label: Where did you get the app from + multiple: false + options: + - Google Play + - F-Droid + - Other + validations: + required: true + - type: input + id: android_version + attributes: + label: Android version + description: Please mention if you are using a custom rom! + validations: + required: true + - type: input + id: device + attributes: + label: Device model + - type: input + id: first + attributes: + label: First occurred + placeholder: about x days/weeks ago + - type: textarea + id: steps + attributes: + label: Steps to reproduce + placeholder: | + 1. This + 2. Then that + 3. Then this + 4. Etc. + - type: textarea + id: expected + attributes: + label: Expected behaviour + description: After following the steps, what did you think AntennaPod would do? + - type: textarea + id: current + attributes: + label: Current behaviour + description: What did AntennaPod do instead? Screenshots might help. Usually, you can take a screenshot of your smartphone by pressing *Power* + *Volume down* for a few seconds. + - type: textarea + id: logs + attributes: + label: Logs + description: If you are experiencing a crash, including the stacktrace will likely get it fixed sooner. From 9fe7d06ec03297852bf1b48dd1949a67205ad534 Mon Sep 17 00:00:00 2001 From: Wladimir Kirianov Date: Thu, 28 Jul 2022 13:51:06 +0200 Subject: [PATCH 5/6] Create config.yml --- .github/ISSUE_TEMPLATE/config.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..45510c90 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,11 @@ +blank_issues_enabled: false +contact_links: + - name: Feature Request + url: https://github.com/Docile-Alligator/Infinity-For-Reddit/discussions/categories/ideas + about: Discuss ideas for new features of changes + - name: Questions + url: https://github.com/Docile-Alligator/Infinity-For-Reddit/discussions/categories/q-a + about: Please ask and answer questions here. + d - name: Help needed + url: https://github.com/Docile-Alligator/Infinity-For-Reddit/discussions/categories/help-needed + about: Please ask for help here From cdabfc8a6c27b1c85183484b75200ee3f5932381 Mon Sep 17 00:00:00 2001 From: Wladimir Kirianov Date: Thu, 28 Jul 2022 14:13:56 +0200 Subject: [PATCH 6/6] Update config.yml --- .github/ISSUE_TEMPLATE/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 45510c90..138e77f4 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -6,6 +6,6 @@ contact_links: - name: Questions url: https://github.com/Docile-Alligator/Infinity-For-Reddit/discussions/categories/q-a about: Please ask and answer questions here. - d - name: Help needed + - name: Help needed url: https://github.com/Docile-Alligator/Infinity-For-Reddit/discussions/categories/help-needed about: Please ask for help here