From a4a84fa841d57eeb72cffea431de0942792fdad3 Mon Sep 17 00:00:00 2001 From: ludeeus Date: Mon, 13 May 2024 14:21:45 +0000 Subject: [PATCH] Add basic issue template --- .github/ISSUE_TEMPLATE/bug.yml | 43 +++++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + 2 files changed, 44 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 00000000..94132988 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,43 @@ +name: "Report a bug with pyCognito" +description: Report an issue with pyCognito +body: +- type: textarea + attributes: + label: The problem + placeholder: >- + Describe the issue you are experiencing here to communicate to the + maintainers. Tell us what you were trying to do and what happened. + validations: + required: true +- type: markdown + attributes: + value: | + ## Environment +- type: input + attributes: + label: Operating system + validations: + required: true +- type: textarea + validations: + required: true + attributes: + label: Python version + render: txt +- type: textarea + validations: + required: true + attributes: + label: Problem-relevant code + description: >- + A minimal example to reproduce the bug + render: python +- type: textarea + attributes: + label: Traceback/Error logs + description: >- + If you come across any trace or error logs, please provide them. + render: txt +- type: textarea + attributes: + label: Additional information diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..ec4bb386 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false \ No newline at end of file