From f982b21ab9fef76d853030c4f3774b76c0e9ba6c Mon Sep 17 00:00:00 2001 From: Julien Schueller Date: Tue, 12 Nov 2024 11:42:41 +0100 Subject: [PATCH] Add issue template --- .github/ISSUE_TEMPLATE/0_bug.yml | 65 ++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100755 .github/ISSUE_TEMPLATE/0_bug.yml diff --git a/.github/ISSUE_TEMPLATE/0_bug.yml b/.github/ISSUE_TEMPLATE/0_bug.yml new file mode 100755 index 00000000..c657f758 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/0_bug.yml @@ -0,0 +1,65 @@ +name: Bug Report +description: Create a bug report. +labels: + - bug +body: + - type: textarea + id: what + attributes: + label: What happened? + description: What should have happened instead? Please provide as many details as possible. + validations: + required: true + - type: textarea + id: info + attributes: + label: How to reproduce the issue? + description: Please add the minimal code that helps replicating the issue. + render: shell + validations: + required: true + - type: textarea + id: version + attributes: + label: Version + description: | + Please tell us the version you are using. + + ```python + import nlopt + print(nlopt.__version__) + ``` + validations: + required: true + - type: dropdown + id: oscheck + attributes: + label: Operating System + description: Please provide the operating system running. + options: + - unknown + - Windows + - Linux + - MacOS + - all + - other + validations: + required: true + - type: dropdown + id: sourcecheck + attributes: + label: Installation media + description: Please provide the installation media. + options: + - unknown + - pip + - conda + - from source + - other + validations: + required: true + - type: textarea + id: context + attributes: + label: Additional Context + description: Include any additional information that you think would be valuable.