From 08de130bcc0d950d8bea5b8a09f58f1b32d3de76 Mon Sep 17 00:00:00 2001 From: Daniel Kuschny Date: Fri, 1 Dec 2023 11:35:48 +0100 Subject: [PATCH] Add issue templates --- .github/ISSUE_TEMPLATE/01_bug_report.yml | 61 +++++++++++++++++++ .github/ISSUE_TEMPLATE/02_feature_request.yml | 12 ++++ .github/ISSUE_TEMPLATE/config.yml | 4 ++ 3 files changed, 77 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/01_bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/02_feature_request.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/01_bug_report.yml b/.github/ISSUE_TEMPLATE/01_bug_report.yml new file mode 100644 index 0000000..b11176c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/01_bug_report.yml @@ -0,0 +1,61 @@ +name: Bug report +description: Template for bug reports +title: '[Bug]: ' +body: + - type: textarea + id: description + attributes: + label: Description + description: Please share a clear and concise description of the problem. + placeholder: Description + validations: + required: true + - type: textarea + id: reproduction-steps + attributes: + label: Reproduction Steps + description: >- + Please include minimal steps to reproduce the problem if possible. Also + provide any configurations and files needed to reproduce the issue. + placeholder: Minimal Reproduction + validations: + required: true + - type: textarea + id: expected-behavior + attributes: + label: Expected behavior + description: Provide a description of the expected behavior. + placeholder: Expected behavior + validations: + required: true + - type: textarea + id: actual-behavior + attributes: + label: Actual Behavior + description: >- + Provide a description of the actual behavior observed. If applicable + please include any error messages, exception stacktraces or memory + dumps. + placeholder: Actual Behavior + validations: + required: true + - type: textarea + id: known-workarounds + attributes: + label: Known Workarounds + description: Please provide a description of any known workarounds. + placeholder: Known Workarounds + - type: textarea + id: other-information + attributes: + label: Other information + description: >- + If you have an idea where the problem might lie, let us know that here. + Please include any pointers to code, relevant changes, or related issues + you know of. + placeholder: Other information + - type: markdown + attributes: + value: >- + This template was generated with [Issue Forms + Creator](https://issue-forms-creator.netlify.app) diff --git a/.github/ISSUE_TEMPLATE/02_feature_request.yml b/.github/ISSUE_TEMPLATE/02_feature_request.yml new file mode 100644 index 0000000..1e38e14 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/02_feature_request.yml @@ -0,0 +1,12 @@ +name: Feature request +description: Template for feature requests +title: '[Feature Request]: ' +body: + - type: textarea + id: description + attributes: + label: Description + description: Please description of the new feature you would like to see. + placeholder: Description + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..1d1771e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,4 @@ +blank_issues_enabled: true +contact_links: + - name: Ask a general question or bring in some ideas + url: https://github.com/Danielku15/SigningServer/discussions \ No newline at end of file