From c14a8c754487c681a2fae166257c0787c61da79e Mon Sep 17 00:00:00 2001 From: Fabio Cavalcante Date: Mon, 15 Jul 2024 14:27:37 -0700 Subject: [PATCH] Creating issue templates (#3768) --- .github/ISSUE_TEMPLATE/01-bug-report.yml | 25 +++++++++++++++++++ .github/ISSUE_TEMPLATE/02-feature-request.yml | 11 ++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + 3 files changed, 37 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 000000000..aa12035fb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/01-bug-report.yml @@ -0,0 +1,25 @@ +name: Bug Report +description: Create a report to help us improve +labels: ["potential-bug"] +body: +- id: version + type: textarea + attributes: + label: Version + placeholder: Please provide the Core Tools version exhibiting the problem. + validations: + required: true +- id: description + type: textarea + attributes: + label: Description + placeholder: Please provide a succinct description of the issue. + validations: + required: true +- id: repro + type: textarea + attributes: + label: Steps to reproduce + placeholder: Please provide the steps required to reproduce the problem. + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/02-feature-request.yml b/.github/ISSUE_TEMPLATE/02-feature-request.yml new file mode 100644 index 000000000..b7e2caf9c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/02-feature-request.yml @@ -0,0 +1,11 @@ +name: Feature Request +description: Make a feature request +labels: ["enhancement"] +body: +- id: description + type: textarea + attributes: + label: Description + placeholder: Please provide a succinct description of the feature you would like to see. + 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 000000000..a49eab2f6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: true \ No newline at end of file