From f2909c54b2eb45517813ac36879df4ef152753cc Mon Sep 17 00:00:00 2001 From: calinah Date: Sun, 9 Jul 2023 21:42:38 -0700 Subject: [PATCH 1/3] docs: renaming issue tmplt according to docs --- .github/ISSUE_TEMPLATE/{bug_issue_template.yml => BUG-REPORT.yml} | 0 .../{new_feature_issue_template.yml => FEATURE-REQUEST.yml} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename .github/ISSUE_TEMPLATE/{bug_issue_template.yml => BUG-REPORT.yml} (100%) rename .github/ISSUE_TEMPLATE/{new_feature_issue_template.yml => FEATURE-REQUEST.yml} (100%) diff --git a/.github/ISSUE_TEMPLATE/bug_issue_template.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/bug_issue_template.yml rename to .github/ISSUE_TEMPLATE/BUG-REPORT.yml diff --git a/.github/ISSUE_TEMPLATE/new_feature_issue_template.yml b/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/new_feature_issue_template.yml rename to .github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml From d69c6cb6ee874415cb7019835cbe2d436b346be4 Mon Sep 17 00:00:00 2001 From: calinah Date: Sun, 9 Jul 2023 21:51:50 -0700 Subject: [PATCH 2/3] docs: updating issue tmplts --- .github/ISSUE_TEMPLATE/BUG-REPORT.yml | 6 +----- .github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml | 13 ++++++++----- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml index 60ca17662..d27e25a0d 100644 --- a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml +++ b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml @@ -1,12 +1,8 @@ name: "🐛 Bug Report" -about: Report a bug encountered while operating `launchpad-namespaces`. - +description: Report a bug encountered while operating `launchpad-namespaces`. title: "🐛 [BUG] - " labels: ["bug"] -description: | - Please provide as much information as possible. Not doing so may result in your bug not being addressed in a timely manner. - body: - type: textarea id: what-happened diff --git a/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml b/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml index 1b322dbb5..5270230be 100644 --- a/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml +++ b/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml @@ -1,13 +1,16 @@ name: "✨ Feature Request" -about: Request a new feature or enhancement. - +description: Request a new feature or enhancement title: "✨ [FEATURE] - <title>" labels: ["enhancement"] -description: | - A clear and concise description of the new feature you are requesting. - body: + - type: textarea + id: description + attributes: + label: "Description" + description: "A clear and concise description of the new feature you are requesting." + required: true + - type: textarea id: problem-motivation attributes: From 5caa2254f8958647ff8e427d9b11a02223473b41 Mon Sep 17 00:00:00 2001 From: calinah <calina1391@gmail.com> Date: Sun, 9 Jul 2023 21:59:04 -0700 Subject: [PATCH 3/3] docs: updating validations --- .github/ISSUE_TEMPLATE/BUG-REPORT.yml | 8 +++++++- .github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml | 9 ++++++++- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml index d27e25a0d..475fe5675 100644 --- a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml +++ b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml @@ -9,6 +9,7 @@ body: attributes: label: "What happened?" description: "Please provide a clear description of what happened." + validations: required: true - type: textarea @@ -16,6 +17,7 @@ body: attributes: label: "Expected behavior" description: "Please provide a clear description of what you expected to happen." + validations: required: true - type: textarea @@ -28,6 +30,7 @@ body: - Helm Version: - Namespace Affected: - Any other relevant environment details: + validations: required: true - type: textarea @@ -35,6 +38,7 @@ body: attributes: label: "Reproduction steps" description: "Please provide steps to reproduce the bug as minimally and precisely as possible." + validations: required: true - type: textarea @@ -42,6 +46,7 @@ body: attributes: label: "Possible Solution" description: "If you have any suggestions on how to fix the bug, please provide them." + validations: required: false - type: textarea @@ -49,4 +54,5 @@ body: attributes: label: "Additional Information" description: "Any additional information or context that may be helpful in understanding or resolving the issue." - required: false + validations: + required: false \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml b/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml index 5270230be..668fd422a 100644 --- a/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml +++ b/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml @@ -9,6 +9,7 @@ body: attributes: label: "Description" description: "A clear and concise description of the new feature you are requesting." + validations: required: true - type: textarea @@ -16,6 +17,7 @@ body: attributes: label: "Problem or Motivation" description: "Explain the problem or motivation behind the feature request. What issue or need does it address?" + validations: required: true - type: textarea @@ -30,6 +32,7 @@ body: attributes: label: "Additional Information" description: "Any additional information or context that may be helpful in understanding your feature request." + validations: required: false - type: textarea @@ -37,6 +40,7 @@ body: attributes: label: "Related Issues" description: "If there are any related issues or pull requests, please mention them here." + validations: required: false - type: textarea @@ -44,6 +48,7 @@ body: attributes: label: "Contribution" description: "If you are interested in contributing to the development of this feature, please let us know." + validations: required: false - type: textarea @@ -51,6 +56,7 @@ body: attributes: label: "Implementation Suggestions" description: "If you have any suggestions on how to implement this feature or specific technical considerations, please provide them." + validations: required: false - type: textarea @@ -58,4 +64,5 @@ body: attributes: label: "Other Comments" description: "Any other comments, ideas, or thoughts you'd like to add." - required: false + validations: + required: false \ No newline at end of file