From 0615c94b9b01e08c525537a4605a475da646a46e Mon Sep 17 00:00:00 2001 From: Matteo Gheza Date: Sat, 3 Sep 2022 14:23:05 +0200 Subject: [PATCH 1/7] Add Issue Forms --- .github/ISSUE_TEMPLATE/bug.yaml | 31 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.yaml | 16 +++++++++++ 2 files changed, 47 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yaml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yaml diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml new file mode 100644 index 00000000000..10945a8a60f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -0,0 +1,31 @@ +name: 🐛 Bug Report +description: | + Describe your problem here. +labels: [bug] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: textarea + id: description + attributes: + label: Bug Description + description: Also tell us, what did you expect to happen? + placeholder: Tell us what you see! + validations: + required: true + - type: input + id: version + attributes: + label: Version + description: What version of Mixxx are you running? + - type: dropdown + id: os + attributes: + label: OS + description: What operating system are you running? + options: + - MacOS + - Windows + - Linux diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml new file mode 100644 index 00000000000..ca0e1070bf6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -0,0 +1,16 @@ +name: 🚀 Feature Request +description: | + Describe the requested feature here. +labels: [feature] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to suggest a new feature! + - type: textarea + id: description + attributes: + label: Feature Description + description: What feature would you like to see added to Mixxx? + validations: + required: true From 7e4425013a3470ddf11e949707c9b19129c0f496 Mon Sep 17 00:00:00 2001 From: Matteo Gheza Date: Sun, 4 Sep 2022 12:07:17 +0200 Subject: [PATCH 2/7] Update issue templates --- .github/ISSUE_TEMPLATE/bug.yaml | 12 ++++-------- .github/ISSUE_TEMPLATE/feature_request.yaml | 2 +- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml index 10945a8a60f..536923e18f4 100644 --- a/.github/ISSUE_TEMPLATE/bug.yaml +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -11,8 +11,7 @@ body: id: description attributes: label: Bug Description - description: Also tell us, what did you expect to happen? - placeholder: Tell us what you see! + description: Tell us what happens and what should happen instead. validations: required: true - type: input @@ -20,12 +19,9 @@ body: attributes: label: Version description: What version of Mixxx are you running? - - type: dropdown + - type: input id: os attributes: label: OS - description: What operating system are you running? - options: - - MacOS - - Windows - - Linux + description: What operating system (and distribution if you're on Linux) are you running? + placeholder: Windows 11, macOS Big Sur, Ubuntu 22.04, ... diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index ca0e1070bf6..00b5879e83d 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -1,6 +1,6 @@ name: 🚀 Feature Request description: | - Describe the requested feature here. + Describe describe your use-case, not yet supported and a possible solution. labels: [feature] body: - type: markdown From 86c9f0449232bb47b48b9e93977238048c0f0fbb Mon Sep 17 00:00:00 2001 From: Matteo Gheza Date: Sun, 4 Sep 2022 13:28:40 +0200 Subject: [PATCH 3/7] Add "Sur" to .codespellignore for "MacOs Big Sur" --- .codespellignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.codespellignore b/.codespellignore index 6c7a6601317..7bb8faaea6a 100644 --- a/.codespellignore +++ b/.codespellignore @@ -4,3 +4,4 @@ InOut copyable sord doubleClick +Sur From ac023d69287ab394e1f4d34902f776834ccc4529 Mon Sep 17 00:00:00 2001 From: Matteo Gheza Date: Tue, 6 Sep 2022 11:35:27 +0200 Subject: [PATCH 4/7] Swap description and title in feature_request.yaml --- .github/ISSUE_TEMPLATE/feature_request.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index 00b5879e83d..28fd84a9675 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -1,6 +1,6 @@ name: 🚀 Feature Request description: | - Describe describe your use-case, not yet supported and a possible solution. + What feature would you like to see added to Mixxx? labels: [feature] body: - type: markdown @@ -11,6 +11,6 @@ body: id: description attributes: label: Feature Description - description: What feature would you like to see added to Mixxx? + description: Describe describe your use-case, not yet supported and a possible solution. validations: required: true From 30c00e1e4b735b407a74a2e57374c264f0fc9651 Mon Sep 17 00:00:00 2001 From: Matteo Gheza Date: Tue, 6 Sep 2022 20:34:04 +0200 Subject: [PATCH 5/7] Update .github/ISSUE_TEMPLATE/bug.yaml Co-authored-by: Swiftb0y <12380386+Swiftb0y@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/bug.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml index 536923e18f4..d0375978b09 100644 --- a/.github/ISSUE_TEMPLATE/bug.yaml +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -19,6 +19,7 @@ body: attributes: label: Version description: What version of Mixxx are you running? + placeholder: 2.3.4, 2.4.0, ... - type: input id: os attributes: From 845a74992d495d0033d4d223332d32ce20ea1a2a Mon Sep 17 00:00:00 2001 From: Matteo Gheza Date: Tue, 6 Sep 2022 20:39:02 +0200 Subject: [PATCH 6/7] Add issues config.yml --- .github/ISSUE_TEMPLATE/config.yml | 5 +++++ 1 file changed, 5 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 00000000000..a56e2e6e962 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: 🤔 Question + url: https://mixxx.org/forums + about: Please use our forums for questions From 44b0c34c8fe5beca8dcda1c51e83d7b71cf8c766 Mon Sep 17 00:00:00 2001 From: Matteo Gheza Date: Tue, 6 Sep 2022 21:52:21 +0200 Subject: [PATCH 7/7] Re-enable blank issues --- .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 a56e2e6e962..2d140d84f33 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,4 +1,4 @@ -blank_issues_enabled: false +blank_issues_enabled: true contact_links: - name: 🤔 Question url: https://mixxx.org/forums