From 25a7b1a8329af3e38a7df6bce775e243b5bee910 Mon Sep 17 00:00:00 2001 From: zendranm Date: Tue, 18 Oct 2022 18:17:44 +0200 Subject: [PATCH 1/7] Adding new bug issue template --- .github/ISSUE_TEMPLATE/bug-issue-template.md | 33 ++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-issue-template.md diff --git a/.github/ISSUE_TEMPLATE/bug-issue-template.md b/.github/ISSUE_TEMPLATE/bug-issue-template.md new file mode 100644 index 00000000..44bea8fc --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-issue-template.md @@ -0,0 +1,33 @@ +--- +name: Bug issue template +about: Bug issue template. +title: '' +labels: 'bug' +assignees: '' +--- + +Before you open an issue, please verify if a similar one already exists or has been closed before. More details about the process of contributing can be found in [CONTRIBUTING.md](https://github.com/TheAlgorithms/JavaScript/blob/master/CONTRIBUTING.md). + +## Expected Behavior + + + +## Actual Behavior + + + +## Reproduction steps + + + +## Specifications + + From 0087926392ff9cf9d391540351f8402e0294c12a Mon Sep 17 00:00:00 2001 From: zendranm Date: Fri, 21 Oct 2022 13:25:00 +0200 Subject: [PATCH 2/7] Converting issue templates to yaml --- .github/ISSUE_TEMPLATE/bug-issue-template.md | 33 --------------- .github/ISSUE_TEMPLATE/bug-issue-template.yml | 41 +++++++++++++++++++ .../feature-request-template.yml | 29 +++++++++++++ 3 files changed, 70 insertions(+), 33 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug-issue-template.md create mode 100644 .github/ISSUE_TEMPLATE/bug-issue-template.yml create mode 100644 .github/ISSUE_TEMPLATE/feature-request-template.yml diff --git a/.github/ISSUE_TEMPLATE/bug-issue-template.md b/.github/ISSUE_TEMPLATE/bug-issue-template.md deleted file mode 100644 index 44bea8fc..00000000 --- a/.github/ISSUE_TEMPLATE/bug-issue-template.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -name: Bug issue template -about: Bug issue template. -title: '' -labels: 'bug' -assignees: '' ---- - -Before you open an issue, please verify if a similar one already exists or has been closed before. More details about the process of contributing can be found in [CONTRIBUTING.md](https://github.com/TheAlgorithms/JavaScript/blob/master/CONTRIBUTING.md). - -## Expected Behavior - - - -## Actual Behavior - - - -## Reproduction steps - - - -## Specifications - - diff --git a/.github/ISSUE_TEMPLATE/bug-issue-template.yml b/.github/ISSUE_TEMPLATE/bug-issue-template.yml new file mode 100644 index 00000000..17cb6872 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-issue-template.yml @@ -0,0 +1,41 @@ +name: Bug report +description: Bug report template. +title: '[Bug]: ' +labels: ['bug'] +body: + - type: markdown + attributes: + value: 'Before you open an issue, please verify if a similar one already exists or has been closed before. More details about the process of contributing can be found in [CONTRIBUTING.md](https://github.com/TheAlgorithms/JavaScript/blob/master/CONTRIBUTING.md).' + - type: textarea + attributes: + label: Expected Behavior + description: Describe what was the expected behavior. + validations: + required: true + - type: textarea + attributes: + label: Actual Behavior + description: Describe what actually happens. + validations: + required: true + - type: textarea + attributes: + label: Reproduction steps + description: List steps to reproduce the behavior. + placeholder: | + 1. + 2. + 3. + 4. + validations: + required: true + - type: textarea + attributes: + label: Specifications + description: List steps to reproduce the behavior. + placeholder: | + 1. Version: + 2. Platform: + 3. Browser: + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/feature-request-template.yml b/.github/ISSUE_TEMPLATE/feature-request-template.yml new file mode 100644 index 00000000..e2fb12a2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request-template.yml @@ -0,0 +1,29 @@ +name: Feature request +description: Feature request template. +title: '[Feature]: ' +labels: ['feature'] +body: +- type: markdown + attributes: + value: '## This issue template is not for requesting new algorithms. For new algorithms, PRs should be opened directly.' + - type: markdown + attributes: + value: 'Before you open an issue, please verify if a similar one already exists or has been closed before. More details about the process of contributing can be found in [CONTRIBUTING.md](https://github.com/TheAlgorithms/JavaScript/blob/master/CONTRIBUTING.md).' + - type: textarea + attributes: + label: Motivation + description: Describe what is the motivation behind this feature. + validations: + required: true + - type: textarea + attributes: + label: Examples + description: If possible, provide examples of how this feature can be used. + validations: + required: false + - type: textarea + attributes: + label: Possible workarounds + description: If possible, describes possible workarounds to this feature. + validations: + required: false From 3fbe2a7ee4f88d234b31dacec0f5bebc05c820ab Mon Sep 17 00:00:00 2001 From: zendranm Date: Tue, 25 Oct 2022 21:03:15 +0200 Subject: [PATCH 3/7] CR changes part 1 --- .../{bug-issue-template.yml => bug_report.yml} | 16 +++++++++++----- ...-request-template.yml => feature_request.yml} | 8 ++++---- 2 files changed, 15 insertions(+), 9 deletions(-) rename .github/ISSUE_TEMPLATE/{bug-issue-template.yml => bug_report.yml} (62%) rename .github/ISSUE_TEMPLATE/{feature-request-template.yml => feature_request.yml} (65%) diff --git a/.github/ISSUE_TEMPLATE/bug-issue-template.yml b/.github/ISSUE_TEMPLATE/bug_report.yml similarity index 62% rename from .github/ISSUE_TEMPLATE/bug-issue-template.yml rename to .github/ISSUE_TEMPLATE/bug_report.yml index 17cb6872..f244701f 100644 --- a/.github/ISSUE_TEMPLATE/bug-issue-template.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,11 +1,17 @@ name: Bug report -description: Bug report template. -title: '[Bug]: ' -labels: ['bug'] +description: "Create a report to help us improve" +title: "[BUG]: " +labels: ["bug"] body: - type: markdown attributes: - value: 'Before you open an issue, please verify if a similar one already exists or has been closed before. More details about the process of contributing can be found in [CONTRIBUTING.md](https://github.com/TheAlgorithms/JavaScript/blob/master/CONTRIBUTING.md).' + value: "###Before you open an issue, please verify if a similar one already exists or has been closed before. More details about the process of contributing can be found in [CONTRIBUTING.md](https://github.com/TheAlgorithms/TypeScript/blob/master/CONTRIBUTING.md)." + - type: textarea + attributes: + label: Description + description: Explain what is the problem. + validations: + required: true - type: textarea attributes: label: Expected Behavior @@ -28,7 +34,7 @@ body: 3. 4. validations: - required: true + required: false - type: textarea attributes: label: Specifications diff --git a/.github/ISSUE_TEMPLATE/feature-request-template.yml b/.github/ISSUE_TEMPLATE/feature_request.yml similarity index 65% rename from .github/ISSUE_TEMPLATE/feature-request-template.yml rename to .github/ISSUE_TEMPLATE/feature_request.yml index e2fb12a2..5ab5c486 100644 --- a/.github/ISSUE_TEMPLATE/feature-request-template.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,14 +1,14 @@ name: Feature request -description: Feature request template. -title: '[Feature]: ' -labels: ['feature'] +description: "Suggest features, propose improvements, discuss new ideas" +title: '[FEATURE]: ' +labels: ['enhancement'] body: - type: markdown attributes: value: '## This issue template is not for requesting new algorithms. For new algorithms, PRs should be opened directly.' - type: markdown attributes: - value: 'Before you open an issue, please verify if a similar one already exists or has been closed before. More details about the process of contributing can be found in [CONTRIBUTING.md](https://github.com/TheAlgorithms/JavaScript/blob/master/CONTRIBUTING.md).' + value: '###Before you open an issue, please verify if a similar one already exists or has been closed before. More details about the process of contributing can be found in [CONTRIBUTING.md](https://github.com/TheAlgorithms/TypeScript/blob/master/CONTRIBUTING.md).' - type: textarea attributes: label: Motivation From 38ad2da711b1d6a5d98566406f95d9c166c4b734 Mon Sep 17 00:00:00 2001 From: zendranm Date: Tue, 25 Oct 2022 21:37:32 +0200 Subject: [PATCH 4/7] CR changes part 2 --- .github/ISSUE_TEMPLATE/bug_report.yml | 4 ++-- .github/ISSUE_TEMPLATE/feature_request.yml | 13 ++++++------- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index f244701f..b61a55c2 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -3,9 +3,9 @@ description: "Create a report to help us improve" title: "[BUG]: " labels: ["bug"] body: - - type: markdown + - type: markdown attributes: - value: "###Before you open an issue, please verify if a similar one already exists or has been closed before. More details about the process of contributing can be found in [CONTRIBUTING.md](https://github.com/TheAlgorithms/TypeScript/blob/master/CONTRIBUTING.md)." + value: "### Before you open an issue, please verify if a similar one already exists or has been closed before. More details about the process of contributing can be found in [CONTRIBUTING.md](https://github.com/TheAlgorithms/TypeScript/blob/master/CONTRIBUTING.md)." - type: textarea attributes: label: Description diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 5ab5c486..e4e76643 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,14 +1,13 @@ name: Feature request -description: "Suggest features, propose improvements, discuss new ideas" -title: '[FEATURE]: ' -labels: ['enhancement'] +description: "Suggest features, propose improvements, discuss new ideas" +title: "[FEATURE]: " +labels: ["enhancement"] body: -- type: markdown - attributes: - value: '## This issue template is not for requesting new algorithms. For new algorithms, PRs should be opened directly.' - type: markdown attributes: - value: '###Before you open an issue, please verify if a similar one already exists or has been closed before. More details about the process of contributing can be found in [CONTRIBUTING.md](https://github.com/TheAlgorithms/TypeScript/blob/master/CONTRIBUTING.md).' + value: | + ## This issue template is not for requesting new algorithms. For new algorithms, PRs should be opened directly. + ## Make sure your issue isn't a duplicate and you follow our [contributing guidelines](https://github.com/TheAlgorithms/TypeScript/blob/master/CONTRIBUTING.md) - type: textarea attributes: label: Motivation From 59d9658bc75f410718d73851e210103531e04eee Mon Sep 17 00:00:00 2001 From: zendranm Date: Wed, 26 Oct 2022 08:36:13 +0200 Subject: [PATCH 5/7] CR changes part 3 --- .github/ISSUE_TEMPLATE/bug_report.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index b61a55c2..b8b16677 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -9,7 +9,7 @@ body: - type: textarea attributes: label: Description - description: Explain what is the problem. + description: Explain what the problem is. validations: required: true - type: textarea @@ -26,7 +26,7 @@ body: required: true - type: textarea attributes: - label: Reproduction steps + label: Steps to reproduce (if applicable) description: List steps to reproduce the behavior. placeholder: | 1. @@ -38,7 +38,7 @@ body: - type: textarea attributes: label: Specifications - description: List steps to reproduce the behavior. + description: Specify version, platform, and web browser (if applicable). placeholder: | 1. Version: 2. Platform: From 7856e9ac71e9aa8ce898550aded1cee64450108a Mon Sep 17 00:00:00 2001 From: zendranm Date: Thu, 27 Oct 2022 19:22:35 +0200 Subject: [PATCH 6/7] CR changes part 4 --- .github/ISSUE_TEMPLATE/bug_report.yml | 5 +++++ .github/ISSUE_TEMPLATE/feature_request.yml | 3 +++ 2 files changed, 8 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index b8b16677..9a9a8715 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -7,24 +7,28 @@ body: attributes: value: "### Before you open an issue, please verify if a similar one already exists or has been closed before. More details about the process of contributing can be found in [CONTRIBUTING.md](https://github.com/TheAlgorithms/TypeScript/blob/master/CONTRIBUTING.md)." - type: textarea + id: description attributes: label: Description description: Explain what the problem is. validations: required: true - type: textarea + id: expectedbhv attributes: label: Expected Behavior description: Describe what was the expected behavior. validations: required: true - type: textarea + id: actualbhv attributes: label: Actual Behavior description: Describe what actually happens. validations: required: true - type: textarea + id: steps attributes: label: Steps to reproduce (if applicable) description: List steps to reproduce the behavior. @@ -36,6 +40,7 @@ body: validations: required: false - type: textarea + id: specifications attributes: label: Specifications description: Specify version, platform, and web browser (if applicable). diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index e4e76643..7b21ce59 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -9,18 +9,21 @@ body: ## This issue template is not for requesting new algorithms. For new algorithms, PRs should be opened directly. ## Make sure your issue isn't a duplicate and you follow our [contributing guidelines](https://github.com/TheAlgorithms/TypeScript/blob/master/CONTRIBUTING.md) - type: textarea + id: description attributes: label: Motivation description: Describe what is the motivation behind this feature. validations: required: true - type: textarea + id: examples attributes: label: Examples description: If possible, provide examples of how this feature can be used. validations: required: false - type: textarea + id: workarounds attributes: label: Possible workarounds description: If possible, describes possible workarounds to this feature. From bf169b7846045d1bbb3b196f352489656b5045ae Mon Sep 17 00:00:00 2001 From: zendranm Date: Fri, 28 Oct 2022 14:58:02 +0200 Subject: [PATCH 7/7] CR changes part 5 --- .github/ISSUE_TEMPLATE/bug_report.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 9a9a8715..bafa53ac 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -3,10 +3,10 @@ description: "Create a report to help us improve" title: "[BUG]: " labels: ["bug"] body: - - type: markdown + - type: markdown attributes: value: "### Before you open an issue, please verify if a similar one already exists or has been closed before. More details about the process of contributing can be found in [CONTRIBUTING.md](https://github.com/TheAlgorithms/TypeScript/blob/master/CONTRIBUTING.md)." - - type: textarea + - type: textarea id: description attributes: label: Description