From d6503bf6982fdd606293340cc2c7de46f596ad30 Mon Sep 17 00:00:00 2001 From: "yordan.ramchev" Date: Sat, 30 Mar 2024 01:25:22 +0200 Subject: [PATCH 1/6] feat: add issue templates --- .github/workflows/ISSUE_TEMPLATE/blank.md | 10 +++++++ .../workflows/ISSUE_TEMPLATE/bug_report.md | 29 +++++++++++++++++++ .github/workflows/ISSUE_TEMPLATE/config.yml | 14 +++++++++ .../ISSUE_TEMPLATE/feature_request.md | 14 +++++++++ 4 files changed, 67 insertions(+) create mode 100644 .github/workflows/ISSUE_TEMPLATE/blank.md create mode 100644 .github/workflows/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/workflows/ISSUE_TEMPLATE/config.yml create mode 100644 .github/workflows/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/workflows/ISSUE_TEMPLATE/blank.md b/.github/workflows/ISSUE_TEMPLATE/blank.md new file mode 100644 index 000000000..c83695c33 --- /dev/null +++ b/.github/workflows/ISSUE_TEMPLATE/blank.md @@ -0,0 +1,10 @@ +--- +name: Blank issue +about: Something other than a bug or a feature +title: '' +labels: '' +assignees: '' + +--- + + diff --git a/.github/workflows/ISSUE_TEMPLATE/bug_report.md b/.github/workflows/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..f9c194396 --- /dev/null +++ b/.github/workflows/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,29 @@ +--- +name: 🐞 Bug report +about: Create a report to help us improve +title: '' +labels: 'bug' +assignees: '' + +--- + +### Before You Start +This form is only for submitting bug reports. + +### Describe the bug +Please provide us with a clear and concise description of what the bug is. + +### Expected behavior +A clear and concise description of what you expected to happen. + +### How to reproduce +It would be awesome if you could provide us a small reproduction online using https://stackblitz.com (If applicable) + +Steps to reproduce the behavior: +1. Go to '....' +2. Do this '....' +3. Do that '....' +4. Result + +### Screenshots +Add screenshots to help explain your problem. (If applicable) diff --git a/.github/workflows/ISSUE_TEMPLATE/config.yml b/.github/workflows/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..f43234099 --- /dev/null +++ b/.github/workflows/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,14 @@ +blank_issues_enabled: true +contact_links: + - name: Discord Chat + url: https://chat.vuejs.org + about: Ask questions and discuss with other Vue users in real time. + - name: Questions & Discussions + url: https://github.com/vuejs/core/discussions + about: Use GitHub discussions for message-board style questions and discussions. + - name: Patreon + url: https://www.patreon.com/evanyou + about: Love Vue.js? Please consider supporting us via Patreon. + - name: Open Collective + url: https://opencollective.com/vuejs/donate + about: Love Vue.js? Please consider supporting us via Open Collective. \ No newline at end of file diff --git a/.github/workflows/ISSUE_TEMPLATE/feature_request.md b/.github/workflows/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..f7169e62f --- /dev/null +++ b/.github/workflows/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,14 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: 'enhancement' +assignees: '' + +--- + +### Please describe +Please provide us with a clear and concise description. + +### Additional context +Add any other context or screenshots about the feature request here. (If applicable) From 28ade200aee922c4978178c6c6af10b09abafa19 Mon Sep 17 00:00:00 2001 From: "yordan.ramchev" Date: Sat, 30 Mar 2024 01:32:37 +0200 Subject: [PATCH 2/6] remove: blank_issues_enabled --- .github/workflows/ISSUE_TEMPLATE/config.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ISSUE_TEMPLATE/config.yml b/.github/workflows/ISSUE_TEMPLATE/config.yml index f43234099..831f2bb1d 100644 --- a/.github/workflows/ISSUE_TEMPLATE/config.yml +++ b/.github/workflows/ISSUE_TEMPLATE/config.yml @@ -1,4 +1,3 @@ -blank_issues_enabled: true contact_links: - name: Discord Chat url: https://chat.vuejs.org From a2585e4229e7769136eae530bf03f41ea2788f13 Mon Sep 17 00:00:00 2001 From: "yordan.ramchev" Date: Sat, 30 Mar 2024 01:43:03 +0200 Subject: [PATCH 3/6] feat: set issue order --- .github/ISSUE_TEMPLATE/1-feature_request.md | 0 .../2-bug_report.md} | 0 .../blank.md => ISSUE_TEMPLATE/3-blank.md} | 0 .github/{workflows => }/ISSUE_TEMPLATE/config.yml | 0 .../workflows/ISSUE_TEMPLATE/feature_request.md | 14 -------------- 5 files changed, 14 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/1-feature_request.md rename .github/{workflows/ISSUE_TEMPLATE/bug_report.md => ISSUE_TEMPLATE/2-bug_report.md} (100%) rename .github/{workflows/ISSUE_TEMPLATE/blank.md => ISSUE_TEMPLATE/3-blank.md} (100%) rename .github/{workflows => }/ISSUE_TEMPLATE/config.yml (100%) delete mode 100644 .github/workflows/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/1-feature_request.md b/.github/ISSUE_TEMPLATE/1-feature_request.md new file mode 100644 index 000000000..e69de29bb diff --git a/.github/workflows/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/2-bug_report.md similarity index 100% rename from .github/workflows/ISSUE_TEMPLATE/bug_report.md rename to .github/ISSUE_TEMPLATE/2-bug_report.md diff --git a/.github/workflows/ISSUE_TEMPLATE/blank.md b/.github/ISSUE_TEMPLATE/3-blank.md similarity index 100% rename from .github/workflows/ISSUE_TEMPLATE/blank.md rename to .github/ISSUE_TEMPLATE/3-blank.md diff --git a/.github/workflows/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml similarity index 100% rename from .github/workflows/ISSUE_TEMPLATE/config.yml rename to .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/workflows/ISSUE_TEMPLATE/feature_request.md b/.github/workflows/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index f7169e62f..000000000 --- a/.github/workflows/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: 'enhancement' -assignees: '' - ---- - -### Please describe -Please provide us with a clear and concise description. - -### Additional context -Add any other context or screenshots about the feature request here. (If applicable) From 1c82ca9a12c7921ca23929d40e72b94ba5270838 Mon Sep 17 00:00:00 2001 From: "yordan.ramchev" Date: Sat, 30 Mar 2024 01:47:59 +0200 Subject: [PATCH 4/6] feat: create structure --- .github/ISSUE_TEMPLATE/1-feature_request.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/1-feature_request.md b/.github/ISSUE_TEMPLATE/1-feature_request.md index e69de29bb..f7169e62f 100644 --- a/.github/ISSUE_TEMPLATE/1-feature_request.md +++ b/.github/ISSUE_TEMPLATE/1-feature_request.md @@ -0,0 +1,14 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: 'enhancement' +assignees: '' + +--- + +### Please describe +Please provide us with a clear and concise description. + +### Additional context +Add any other context or screenshots about the feature request here. (If applicable) From 0f37a337e97d0e43808d10adceab255bf31f1826 Mon Sep 17 00:00:00 2001 From: "yordan.ramchev" Date: Sat, 30 Mar 2024 09:30:47 +0200 Subject: [PATCH 5/6] feat: add reference link --- .github/ISSUE_TEMPLATE/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 831f2bb1d..e2f5a551e 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,3 +1,4 @@ +# Reference: https://github.com/vuejs/core/blob/main/.github/ISSUE_TEMPLATE/config.yml contact_links: - name: Discord Chat url: https://chat.vuejs.org From 735d9e11eddc77d3faad217b4edb4d8d69810f96 Mon Sep 17 00:00:00 2001 From: "yordan.ramchev" Date: Sat, 30 Mar 2024 09:31:18 +0200 Subject: [PATCH 6/6] feat: add stackblitz url for reproduction --- .github/ISSUE_TEMPLATE/2-bug_report.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/2-bug_report.md b/.github/ISSUE_TEMPLATE/2-bug_report.md index f9c194396..d9f5d7e69 100644 --- a/.github/ISSUE_TEMPLATE/2-bug_report.md +++ b/.github/ISSUE_TEMPLATE/2-bug_report.md @@ -17,7 +17,8 @@ Please provide us with a clear and concise description of what the bug is. A clear and concise description of what you expected to happen. ### How to reproduce -It would be awesome if you could provide us a small reproduction online using https://stackblitz.com (If applicable) +It would be awesome if you could provide us a small reproduction online using stackblitz. You can replace `typescript-vitest` with another template name that is matching your case from https://github.com/vuejs/create-vue-templates. +- https://stackblitz.com/github/vuejs/create-vue-templates/tree/main/typescript-vitest Steps to reproduce the behavior: 1. Go to '....'