From f05241bb112ecfa71d480efcebf60877e9670b74 Mon Sep 17 00:00:00 2001 From: Paddy Mullen Date: Mon, 13 Nov 2023 09:24:20 -0500 Subject: [PATCH] adding feature_request, and disabling blank issues (#134) --- .github/ISSUE_TEMPLATE/config.yml | 1 + .../ISSUE_TEMPLATE/enhancement_request.yml | 58 +++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/enhancement_request.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..7c3c1670 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/enhancement_request.yml b/.github/ISSUE_TEMPLATE/enhancement_request.yml new file mode 100644 index 00000000..7808d00a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/enhancement_request.yml @@ -0,0 +1,58 @@ +name: 'Enhancement Request' +description: Report an issue with Buckaroo. +labels: [bug] + +body: + - type: checkboxes + id: checks + attributes: + label: Checks + options: + - label: > + I have checked that this issue has not already been reported. + required: true + + - type: dropdown + id: Subsystem + attributes: + label: How would you categorize this request. You can select multiple if not sure + multiple: true + options: + - Display (is this related to visual display of a value) + - Documentation + - Summary stats + - Developer ergonomics (defaults, error messages) + - Auto Cleaning + - Performance + - Developer Experience/CI (feature to make it easier to devlop on Buckaroo) + - Low Code UI + - Other (please describe in Issue Description) + validations: + required: true + + - type: textarea + id: problem + attributes: + label: Enhancement Description + description: > + How would you like Buckaroo to function? Write a description of what you want buckaroo to do. + validations: + required: true + + - type: textarea + id: pseudo-code-implementation + attributes: + label: Pseudo Code Implementation + description: > + If applicable, write simple python code that shows an input dataframe, the code to transform it to the output dataframe you are looking for, and the output dataframe. + validations: + required: false + + - type: textarea + id: prior art + attributes: + label: Prior Art + description: > + Link to other tools that function in the way you want. Describe how that tool solves this problem. Videos are welcome too + validations: + required: true