From c8f1f7dddca4b5ab192bd0c4a4dfbacbdc908506 Mon Sep 17 00:00:00 2001 From: jmxnzo Date: Tue, 12 Nov 2024 13:08:57 +0100 Subject: [PATCH] Github Issue Templates --- .github/ISSUE_TEMPLATE/bug_report.yml | 39 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 5 +++ .github/ISSUE_TEMPLATE/feature_request.yml | 18 ++++++++++ 3 files changed, 62 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 000000000..441bf0d1c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,39 @@ +name: Bug report +description: File a bug report to help us improve +labels: ["bug", "needs-triage"] +body: + - type: markdown + attributes: + value: | + #### + Before starting a bug report, please take a look into the [Troubleshooting Documentation](https://docs.edgeless.systems/contrast/troubleshooting) and revise the existing issue. + Further please ensure that the provided CLI logs are configured with the `--log-level` command-line flag set to `debug`. + + Thanks for taking the time to fill out this bug report! + + - type: input + id: version + attributes: + label: Contrast Version + description: "In which version do you encounter this bug? (Output of `contrast version`) " + validations: + required: true + - type: input + id: platform + attributes: + label: Deployment Platform + description: "On which platform do you encounter this bug? (Value of default_platform value in justfile.env)" + validations: + required: true + + - type: textarea + attributes: + label: Issue description + description: A concise description of what you're experiencing. + validations: + required: true + + - type: textarea + attributes: + label: Steps to reproduce the behavior + description: Please provide a step-by-step guide on how to reproduce the issue. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..e6e7e7748 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: true +contact_links: + - name: Having trouble or questions? + url: https://github.com/edgelesssys/contrast/discussions/new?category=q-a + about: Open a discussion instead! We will be happy to help you. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 000000000..08430ae42 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,18 @@ +name: Feature request +description: Suggest an idea for this project +body: + - type: textarea + attributes: + label: Use case + description: A concise description of what you want to happen. + validations: + required: true + - type: textarea + attributes: + label: Describe your solution + description: In case you have an idea how to implement this feature. + - type: checkboxes + attributes: + label: Would you be willing to implement this feature? + options: + - label: Yes, I could contribute this feature.