From a102c95d7280813e6a3a64ba565539ce523e3196 Mon Sep 17 00:00:00 2001 From: Kevin YU Date: Wed, 14 Jun 2023 09:48:05 +0800 Subject: [PATCH 1/9] chore: add issue templates --- .github/ISSUE_TEMPLATE/bug-report.md | 24 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/enhancement.md | 11 +++++++++++ .github/ISSUE_TEMPLATE/feature-request.md | 19 ++++++++++++++++++ .github/ISSUE_TEMPLATE/support-request.md | 17 ++++++++++++++++ 4 files changed, 71 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/enhancement.md create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md create mode 100644 .github/ISSUE_TEMPLATE/support-request.md diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 00000000..c91b8aef --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,24 @@ +--- +name: Bug Report +about: Report a bug encountered while operating Dae +labels: kind/bug +--- + + + +## What happened + +## What you expected to happen + +## How to reproduce it (as minimally and precisely as possible): + +## Anything else we need to know + +## Environment + +- Dae version (use `dae --version`): +- OS (e.g `cat /etc/os-release`): +- Kernel (e.g. `uname -a`): +- Others: diff --git a/.github/ISSUE_TEMPLATE/enhancement.md b/.github/ISSUE_TEMPLATE/enhancement.md new file mode 100644 index 00000000..0fbc3f53 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/enhancement.md @@ -0,0 +1,11 @@ +--- +name: Enhancement Request +about: Suggest an enhancement to the Dae project +labels: kind/enhancement +--- + + + +## What would you like us to improve + +## Why is this needed diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 00000000..b9608cbc --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,19 @@ +--- +name: Feature Request +about: feature request related to Dae +labels: kind/feature +--- + + + + + +## What feature you would like us to integrate into the dae project + +## Why is this needed diff --git a/.github/ISSUE_TEMPLATE/support-request.md b/.github/ISSUE_TEMPLATE/support-request.md new file mode 100644 index 00000000..67cca0cb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/support-request.md @@ -0,0 +1,17 @@ +--- +name: Support Request +about: Support request related to Dae +labels: kind/support +--- + + + +## What would you like us to support (In short summary) From 5c0a7b251eebb591d869fdfb70625d8c87559239 Mon Sep 17 00:00:00 2001 From: Kevin YU Date: Wed, 14 Jun 2023 09:48:15 +0800 Subject: [PATCH 2/9] chore: add pull request template --- .github/PULL_REQUEST_TEMPLATE.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..d14ab9ec --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,21 @@ + + +### Background + + + +### Checklist + +- [ ] The Pull Request has been fully tested +- [ ] There's an entry in the CHANGELOG +- [ ] There is a user-facing docs PR against https://github.com/daeuniverse/dae + +### Full changelog + +- [Implement ...] + +### Issue reference + + + +Fix #_[issue number]_ From 173c881b1e03ad1ebbc935d6f5fe47dc8d586acc Mon Sep 17 00:00:00 2001 From: Kevin YU Date: Wed, 14 Jun 2023 09:51:57 +0800 Subject: [PATCH 3/9] fix: apply minior fix --- .github/ISSUE_TEMPLATE/bug-report.md | 4 ++-- .github/ISSUE_TEMPLATE/enhancement.md | 2 +- .github/ISSUE_TEMPLATE/feature-request.md | 4 ++-- .github/ISSUE_TEMPLATE/support-request.md | 4 ++-- .github/PULL_REQUEST_TEMPLATE.md | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index c91b8aef..bdc53b79 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -1,6 +1,6 @@ --- name: Bug Report -about: Report a bug encountered while operating Dae +about: Report a bug encountered while operating Daed labels: kind/bug --- @@ -18,7 +18,7 @@ Please use this template while reporting a bug and provide as much info as possi ## Environment -- Dae version (use `dae --version`): +- Daed version (use `dae --version`): - OS (e.g `cat /etc/os-release`): - Kernel (e.g. `uname -a`): - Others: diff --git a/.github/ISSUE_TEMPLATE/enhancement.md b/.github/ISSUE_TEMPLATE/enhancement.md index 0fbc3f53..663d84c8 100644 --- a/.github/ISSUE_TEMPLATE/enhancement.md +++ b/.github/ISSUE_TEMPLATE/enhancement.md @@ -1,6 +1,6 @@ --- name: Enhancement Request -about: Suggest an enhancement to the Dae project +about: Suggest an enhancement to the Daed project labels: kind/enhancement --- diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md index b9608cbc..f37bd1c5 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.md +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -1,6 +1,6 @@ --- name: Feature Request -about: feature request related to Dae +about: feature request related to Daed labels: kind/feature --- @@ -14,6 +14,6 @@ You may also post your idea on the Discussions or the Dae Telegram channel (http -## What feature you would like us to integrate into the dae project +## What feature you would like us to integrate into the daed project ## Why is this needed diff --git a/.github/ISSUE_TEMPLATE/support-request.md b/.github/ISSUE_TEMPLATE/support-request.md index 67cca0cb..002e9bb2 100644 --- a/.github/ISSUE_TEMPLATE/support-request.md +++ b/.github/ISSUE_TEMPLATE/support-request.md @@ -1,6 +1,6 @@ --- name: Support Request -about: Support request related to Dae +about: Support request related to Daed labels: kind/support --- @@ -9,7 +9,7 @@ STOP -- PLEASE READ! GitHub issue is not the right place for support requests. -If you're looking for help, check the Discussions (https://github.com/daeuniverse/dae/discussions). +If you're looking for help, check the Discussions (https://github.com/daeuniverse/daed/discussions). You can also post your question on the Discussions or the Dae Telegram channel (https://t.me/daeuniverse). --> diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index d14ab9ec..86d3d3c7 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,4 +1,4 @@ - + ### Background From df33de0c01dbd0d720a6ddcb70c762bc263f7fe3 Mon Sep 17 00:00:00 2001 From: Kevin Yu <31861128+yqlbu@users.noreply.github.com> Date: Wed, 14 Jun 2023 13:29:18 +0800 Subject: [PATCH 4/9] Update .github/ISSUE_TEMPLATE/bug-report.md Co-authored-by: kunish <17328586+kunish@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/bug-report.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index bdc53b79..19c83528 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -18,7 +18,7 @@ Please use this template while reporting a bug and provide as much info as possi ## Environment -- Daed version (use `dae --version`): +- daed version (use `daed --version`): - OS (e.g `cat /etc/os-release`): - Kernel (e.g. `uname -a`): - Others: From 0117f1bafb993e678ac036a7b4cc824e77da9c4f Mon Sep 17 00:00:00 2001 From: Kevin Yu <31861128+yqlbu@users.noreply.github.com> Date: Wed, 14 Jun 2023 13:29:25 +0800 Subject: [PATCH 5/9] Update .github/ISSUE_TEMPLATE/bug-report.md Co-authored-by: kunish <17328586+kunish@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/bug-report.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index 19c83528..63fcec36 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -1,6 +1,6 @@ --- name: Bug Report -about: Report a bug encountered while operating Daed +about: Report a bug encountered while operating daed labels: kind/bug --- From 36e910f4a726d4f69ac9d2f4367ef9807b450939 Mon Sep 17 00:00:00 2001 From: Kevin Yu <31861128+yqlbu@users.noreply.github.com> Date: Wed, 14 Jun 2023 13:29:30 +0800 Subject: [PATCH 6/9] Update .github/ISSUE_TEMPLATE/enhancement.md Co-authored-by: kunish <17328586+kunish@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/enhancement.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/enhancement.md b/.github/ISSUE_TEMPLATE/enhancement.md index 663d84c8..84da0d28 100644 --- a/.github/ISSUE_TEMPLATE/enhancement.md +++ b/.github/ISSUE_TEMPLATE/enhancement.md @@ -1,6 +1,6 @@ --- name: Enhancement Request -about: Suggest an enhancement to the Daed project +about: Suggest an enhancement to the daed project labels: kind/enhancement --- From 8326f89c746e563cb6ff2bc4f9a0ec90a725440a Mon Sep 17 00:00:00 2001 From: Kevin Yu <31861128+yqlbu@users.noreply.github.com> Date: Wed, 14 Jun 2023 13:29:36 +0800 Subject: [PATCH 7/9] Update .github/ISSUE_TEMPLATE/bug-report.md Co-authored-by: kunish <17328586+kunish@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/bug-report.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index 63fcec36..52abe205 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -10,7 +10,7 @@ Please use this template while reporting a bug and provide as much info as possi ## What happened -## What you expected to happen +## What you expect to happen ## How to reproduce it (as minimally and precisely as possible): From 55bad9cc057e0dff5c142ff1c0c52ce9d594f8df Mon Sep 17 00:00:00 2001 From: Kevin Yu <31861128+yqlbu@users.noreply.github.com> Date: Wed, 14 Jun 2023 13:29:43 +0800 Subject: [PATCH 8/9] Update .github/ISSUE_TEMPLATE/feature-request.md Co-authored-by: kunish <17328586+kunish@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/feature-request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md index f37bd1c5..e25cf18e 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.md +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -1,6 +1,6 @@ --- name: Feature Request -about: feature request related to Daed +about: feature request related to daed labels: kind/feature --- From cb118f0518e61276e56d41ea63e8dd13a16342e3 Mon Sep 17 00:00:00 2001 From: Kevin Yu <31861128+yqlbu@users.noreply.github.com> Date: Wed, 14 Jun 2023 13:29:49 +0800 Subject: [PATCH 9/9] Update .github/PULL_REQUEST_TEMPLATE.md Co-authored-by: kunish <17328586+kunish@users.noreply.github.com> --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 86d3d3c7..14677004 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,4 +1,4 @@ - + ### Background