From 3dc67aa2bf9d9a677bc14da81f2fad5bac19d7ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20T=C3=BCrken?= Date: Thu, 25 Jan 2024 13:05:45 +0300 Subject: [PATCH] Update bug report issue template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fatih Türken --- .github/ISSUE_TEMPLATE/bug_report.md | 31 -------- .github/ISSUE_TEMPLATE/bug_report.yaml | 105 +++++++++++++++++++++++++ 2 files changed, 105 insertions(+), 31 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 853e3c74..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -name: Bug Report -about: Help us diagnose and fix bugs in Official AzureAD Provider -labels: bug,needs:triage -title: ---- - - -### What happened? - - -### How can we reproduce it? - - -### What environment did it happen in? - -* Crossplane Version: -* Provider Version: -* Kubernetes Version: -* Kubernetes Distribution: diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 00000000..029cd7ca --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,105 @@ +name: Bug Report +description: Help us diagnose and fix bugs in Official AzureAD Provider +labels: bug,needs:triage +title: "[Bug]: " +body: + - type: markdown + attributes: + value: | + # Thank you for helping to improve Official AzureAD Provider! + + - If you're not currently using the most recent version of the Upbound Official AzureAD Provider, we recommend upgrading. Your issue might have already been addressed in the latest release. + + - type: checkboxes + id: existing_issue + attributes: + label: Is there an existing issue for this? + description: | + Please be sure to search for open issues before raising a new one. + If there is an existing issue, please vote for it by adding a 👍 reaction to it to help us prioritize it. + options: + - label: I have searched the existing issues + required: true + + - type: textarea + id: affected + attributes: + label: Affected Resource(s) + description: Please provide the GVK of the affected resource(s). E.g. "applications.azuread.upbound.io/v1beta1 - Application" + placeholder: "* applications.azuread.upbound.io/v1beta1 - Application" + validations: + required: false + + - type: textarea + id: mr + attributes: + label: Resource MRs required to reproduce the bug + description: Please provide the example manifests and configurations you use. + validations: + required: false + + - type: textarea + id: repro + attributes: + label: Steps to Reproduce + description: Please list the steps required to reproduce the issue. + validations: + required: true + + - type: textarea + id: behavior + attributes: + label: What happened? + description: What difference did you observe in the actual behavior compared to what you expected? + validations: + required: true + + - type: textarea + id: log + attributes: + label: Relevant Error Output Snippet + description: | + If possible, provide a relevant log from the error or panic output. + render: shell + validations: + required: false + + - type: input + id: crossplane_version + attributes: + label: Crossplane Version + placeholder: "X.Y.Z" + validations: + required: true + + - type: input + id: provider_version + attributes: + label: Provider Version + placeholder: "X.Y.Z" + validations: + required: true + + - type: input + id: kubernetes_version + attributes: + label: Kubernetes Version + placeholder: "use `kubectl version`" + validations: + required: false + + - type: input + id: kubernetes_distribution + attributes: + label: Kubernetes Distribution + placeholder: "EKS, AKS, GKE, OpenShift, etc." + validations: + required: false + + - type: textarea + id: additional_info + attributes: + label: Additional Info + description: Any additional information you want to add, related issue(s), pull requests, document references, situations specific to your environment, etc. + validations: + required: false