From c3aca3bb70833f3480ff19051879308f31c64280 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez?= Date: Mon, 13 Jun 2022 16:07:04 -0500 Subject: [PATCH 01/19] Add issue forms Introducing issue forms for: bug report, enhacements and features. In case of help or question there is a link to the slack channel. --- .github/ISSUE_TEMPLATE/bug_report.yaml | 96 +++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 5 ++ .github/ISSUE_TEMPLATE/enhancement.yaml | 56 +++++++++++++++ .github/ISSUE_TEMPLATE/feature.yaml | 85 ++++++++++++++++++++++ 4 files changed, 242 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/enhancement.yaml create mode 100644 .github/ISSUE_TEMPLATE/feature.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 00000000000..eb1675e9c2d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,96 @@ +name: Bug Report +description: File a bug report +title: "[Bug]: " +labels: ["type/bug"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: dropdown + id: module + attributes: + label: Module + description: Which testcontainers module are you using? + options: + - Core + - Azure + - Cassandra + - Clickhouse + - Couchbase + - DB2 + - Dynalite + - Elasticsearch + - GCloud + - HiveMQ + - InfluxDB + - K3S + - Kafka + - LocalStack + - MariaDB + - MockServer + - MongoDB + - MSSQLServer + - MySQL + - Neo4j + - NGINX + - Oracle-XE + - OrientDB + - PostgreSQL + - Presto + - Pulsar + - RabbitMQ + - Selenium + - Solr + - ToxiProxy + - Trino + - Vault + validations: + required: true + - type: input + id: tc-version + attributes: + label: Testcontainers version + description: Which testcontainers version are you using? + placeholder: ex. 1.17.2 + validations: + required: true + - type: dropdown + id: latest-version + attributes: + label: Testcontainers latest version + description: If you are not using the latest version, can you update and reproduce it? still happening? + options: + - 'Yes' + - 'No' + validations: + required: true + - type: textarea + id: docker-version + attributes: + label: Docker version + description: Run `docker version`, copy and paste the output here + render: markdown + validations: + required: true + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Provide the context and the expected result. + validations: + required: true + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: shell + - type: textarea + id: additional-information + attributes: + label: Additional Information + description: | + Any links or references to have more context about the issue. + + Tip: You can attach a minimal sample project to reproduce the issue or log files by clicking this area to highlight it and then dragging files in. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000000..d27b0d086e9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: Need help or have a question? + url: https://slack.testcontainers.org/ + about: Visit our slack channel. diff --git a/.github/ISSUE_TEMPLATE/enhancement.yaml b/.github/ISSUE_TEMPLATE/enhancement.yaml new file mode 100644 index 00000000000..f9dc40593c3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/enhancement.yaml @@ -0,0 +1,56 @@ +name: Enhancement +description: File a enhancement +title: "[Enhancement]: " +labels: ["type/enhancement"] +body: + - type: markdown + attributes: + value: | + Please provide the following information + - type: dropdown + id: module + attributes: + label: Module + description: Which testcontainers module applies the enhancement proposal? + options: + - Core + - Azure + - Cassandra + - Clickhouse + - Couchbase + - DB2 + - Dynalite + - Elasticsearch + - GCloud + - HiveMQ + - InfluxDB + - K3S + - Kafka + - LocalStack + - MariaDB + - MockServer + - MongoDB + - MSSQLServer + - MySQL + - Neo4j + - NGINX + - Oracle-XE + - OrientDB + - PostgreSQL + - Presto + - Pulsar + - RabbitMQ + - Selenium + - Solr + - ToxiProxy + - Trino + - Vault + validations: + required: true + - type: textarea + id: proposal + attributes: + label: Proposal + description: Also tell us, what did you expect to happen? + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/feature.yaml b/.github/ISSUE_TEMPLATE/feature.yaml new file mode 100644 index 00000000000..23213d66a5c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yaml @@ -0,0 +1,85 @@ +name: Feature +description: File a feature +title: "[Feature]: " +labels: ["type/feature"] +body: + - type: markdown + attributes: + value: | + Please provide the following information + - type: dropdown + id: module + attributes: + label: Module + description: Is this feature related to any of the existing modules? + options: + - Core + - Azure + - Cassandra + - Clickhouse + - Couchbase + - DB2 + - Dynalite + - Elasticsearch + - GCloud + - HiveMQ + - InfluxDB + - K3S + - Kafka + - LocalStack + - MariaDB + - MockServer + - MongoDB + - MSSQLServer + - MySQL + - Neo4j + - NGINX + - Oracle-XE + - OrientDB + - PostgreSQL + - Presto + - Pulsar + - RabbitMQ + - Selenium + - Solr + - ToxiProxy + - Trino + - Vault + - type: textarea + id: problem + attributes: + label: Problem + description: Is your feature related to a problem? Please describe + validations: + required: true + - type: textarea + id: solution + attributes: + label: Solution + description: What's the proposal solution for this feature? + validations: + required: true + - type: textarea + id: benefit + attributes: + label: Benefit + description: What's the benefit by implementing it in the project? + validations: + required: true + - type: textarea + id: alternatives + attributes: + label: Benefit + description: Are there other alternatives? Please describe + validations: + required: true + - type: dropdown + id: contribute + attributes: + label: Would you like to help contributing this feature? + description: Which testcontainers module are you using? + options: + - 'Yes' + - 'No' + validations: + required: true From 317340b0d22a154850a09dcbc199f8d702f08e1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Tue, 14 Jun 2022 07:58:44 -0500 Subject: [PATCH 02/19] Update .github/ISSUE_TEMPLATE/bug_report.yaml Co-authored-by: Kevin Wittek --- .github/ISSUE_TEMPLATE/bug_report.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index eb1675e9c2d..71b1560469e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -11,7 +11,7 @@ body: id: module attributes: label: Module - description: Which testcontainers module are you using? + description: Which Testcontainers module are you using? options: - Core - Azure From 7f11a91df2752c3e80824e8e534af41def0157d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Tue, 14 Jun 2022 07:58:56 -0500 Subject: [PATCH 03/19] Update .github/ISSUE_TEMPLATE/bug_report.yaml Co-authored-by: Kevin Wittek --- .github/ISSUE_TEMPLATE/bug_report.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 71b1560469e..5211b534010 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -51,7 +51,7 @@ body: id: tc-version attributes: label: Testcontainers version - description: Which testcontainers version are you using? + description: Which Testcontainers version are you using? placeholder: ex. 1.17.2 validations: required: true From 0661abe3223f358dc0a54e455d531d227a56aca5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Tue, 14 Jun 2022 07:59:07 -0500 Subject: [PATCH 04/19] Update .github/ISSUE_TEMPLATE/bug_report.yaml Co-authored-by: Kevin Wittek --- .github/ISSUE_TEMPLATE/bug_report.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 5211b534010..14d5b74cf0a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -58,7 +58,7 @@ body: - type: dropdown id: latest-version attributes: - label: Testcontainers latest version + label: Using the latest Testcontainers version? description: If you are not using the latest version, can you update and reproduce it? still happening? options: - 'Yes' From c76afbfddf957426e909fe6c65af998fc2efad87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Tue, 14 Jun 2022 07:59:19 -0500 Subject: [PATCH 05/19] Update .github/ISSUE_TEMPLATE/bug_report.yaml Co-authored-by: Kevin Wittek --- .github/ISSUE_TEMPLATE/bug_report.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 14d5b74cf0a..f5ce2b2027a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -59,7 +59,7 @@ body: id: latest-version attributes: label: Using the latest Testcontainers version? - description: If you are not using the latest version, can you update and reproduce it? still happening? + description: If you are not using the latest version, can you update your project and try to reproduce the issue? Is it still happening? options: - 'Yes' - 'No' From a4fbe4ae9f0c8c77cc22b2585d3eb35cdc8b30d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Tue, 14 Jun 2022 07:59:29 -0500 Subject: [PATCH 06/19] Update .github/ISSUE_TEMPLATE/bug_report.yaml Co-authored-by: Kevin Wittek --- .github/ISSUE_TEMPLATE/bug_report.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index f5ce2b2027a..044c6565236 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -69,7 +69,7 @@ body: id: docker-version attributes: label: Docker version - description: Run `docker version`, copy and paste the output here + description: Please run `docker version` and copy and paste the output into this field. render: markdown validations: required: true From 16efaba9fe937c26d3ea93e1885456d7303d5eab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Tue, 14 Jun 2022 11:11:24 -0500 Subject: [PATCH 07/19] Update .github/ISSUE_TEMPLATE/bug_report.yaml Co-authored-by: Kevin Wittek --- .github/ISSUE_TEMPLATE/bug_report.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 044c6565236..279f65f8fe0 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -84,7 +84,7 @@ body: id: logs attributes: label: Relevant log output - description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + description: Please copy and paste any relevant log output. The content will be automatically formatted as code, so no need for backticks. render: shell - type: textarea id: additional-information From d8e180c0439c48d73b28364dcf44a40f38b38a27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Tue, 14 Jun 2022 11:11:54 -0500 Subject: [PATCH 08/19] Update .github/ISSUE_TEMPLATE/feature.yaml Co-authored-by: Kevin Wittek --- .github/ISSUE_TEMPLATE/feature.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature.yaml b/.github/ISSUE_TEMPLATE/feature.yaml index 23213d66a5c..ffbe09ddc66 100644 --- a/.github/ISSUE_TEMPLATE/feature.yaml +++ b/.github/ISSUE_TEMPLATE/feature.yaml @@ -77,7 +77,6 @@ body: id: contribute attributes: label: Would you like to help contributing this feature? - description: Which testcontainers module are you using? options: - 'Yes' - 'No' From dd452abbc1e23e4152987af71a9cee31c1334680 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Tue, 14 Jun 2022 11:12:01 -0500 Subject: [PATCH 09/19] Update .github/ISSUE_TEMPLATE/feature.yaml Co-authored-by: Kevin Wittek --- .github/ISSUE_TEMPLATE/feature.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature.yaml b/.github/ISSUE_TEMPLATE/feature.yaml index ffbe09ddc66..8f9598fc23b 100644 --- a/.github/ISSUE_TEMPLATE/feature.yaml +++ b/.github/ISSUE_TEMPLATE/feature.yaml @@ -70,7 +70,7 @@ body: id: alternatives attributes: label: Benefit - description: Are there other alternatives? Please describe + description: Are there other alternatives? Please describe them. validations: required: true - type: dropdown From acb00047d52e2873fc3ff9b2d7a2ac0e40a33781 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Tue, 14 Jun 2022 11:12:06 -0500 Subject: [PATCH 10/19] Update .github/ISSUE_TEMPLATE/feature.yaml Co-authored-by: Kevin Wittek --- .github/ISSUE_TEMPLATE/feature.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature.yaml b/.github/ISSUE_TEMPLATE/feature.yaml index 8f9598fc23b..eaa55aad08e 100644 --- a/.github/ISSUE_TEMPLATE/feature.yaml +++ b/.github/ISSUE_TEMPLATE/feature.yaml @@ -63,7 +63,7 @@ body: id: benefit attributes: label: Benefit - description: What's the benefit by implementing it in the project? + description: What's the benefit of addng this feature to the project? validations: required: true - type: textarea From 153307d41612655f15920e3d2d7729e49de2bb72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Tue, 14 Jun 2022 11:12:15 -0500 Subject: [PATCH 11/19] Update .github/ISSUE_TEMPLATE/feature.yaml Co-authored-by: Kevin Wittek --- .github/ISSUE_TEMPLATE/feature.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature.yaml b/.github/ISSUE_TEMPLATE/feature.yaml index eaa55aad08e..0624b336d9a 100644 --- a/.github/ISSUE_TEMPLATE/feature.yaml +++ b/.github/ISSUE_TEMPLATE/feature.yaml @@ -56,7 +56,7 @@ body: id: solution attributes: label: Solution - description: What's the proposal solution for this feature? + description: What's the proposed solution for this feature? validations: required: true - type: textarea From 999d926d0b0c455ced01e72ca6d577ca45906ae0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Tue, 14 Jun 2022 11:12:25 -0500 Subject: [PATCH 12/19] Update .github/ISSUE_TEMPLATE/feature.yaml Co-authored-by: Kevin Wittek --- .github/ISSUE_TEMPLATE/feature.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature.yaml b/.github/ISSUE_TEMPLATE/feature.yaml index 0624b336d9a..c9af804befe 100644 --- a/.github/ISSUE_TEMPLATE/feature.yaml +++ b/.github/ISSUE_TEMPLATE/feature.yaml @@ -49,7 +49,7 @@ body: id: problem attributes: label: Problem - description: Is your feature related to a problem? Please describe + description: Is this feature related to a problem? Please describe it. validations: required: true - type: textarea From db9b05760bbe1f47aef5ae4b7f298530ef049578 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Tue, 14 Jun 2022 11:12:39 -0500 Subject: [PATCH 13/19] Update .github/ISSUE_TEMPLATE/feature.yaml Co-authored-by: Kevin Wittek --- .github/ISSUE_TEMPLATE/feature.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/feature.yaml b/.github/ISSUE_TEMPLATE/feature.yaml index c9af804befe..8685e1d15ec 100644 --- a/.github/ISSUE_TEMPLATE/feature.yaml +++ b/.github/ISSUE_TEMPLATE/feature.yaml @@ -45,6 +45,7 @@ body: - ToxiProxy - Trino - Vault + - New Module - type: textarea id: problem attributes: From 30b4ba253f90043bd68e1819284ca2e92c727cd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Tue, 14 Jun 2022 11:12:49 -0500 Subject: [PATCH 14/19] Update .github/ISSUE_TEMPLATE/bug_report.yaml Co-authored-by: Kevin Wittek --- .github/ISSUE_TEMPLATE/bug_report.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 279f65f8fe0..03fc5538851 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -70,7 +70,7 @@ body: attributes: label: Docker version description: Please run `docker version` and copy and paste the output into this field. - render: markdown + render: shell validations: required: true - type: textarea From cc4d029abe705d6bc97f6a71cfaab4e09d05f8fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Tue, 14 Jun 2022 11:12:57 -0500 Subject: [PATCH 15/19] Update .github/ISSUE_TEMPLATE/enhancement.yaml Co-authored-by: Kevin Wittek --- .github/ISSUE_TEMPLATE/enhancement.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/enhancement.yaml b/.github/ISSUE_TEMPLATE/enhancement.yaml index f9dc40593c3..80dff4d1488 100644 --- a/.github/ISSUE_TEMPLATE/enhancement.yaml +++ b/.github/ISSUE_TEMPLATE/enhancement.yaml @@ -1,5 +1,5 @@ name: Enhancement -description: File a enhancement +description: Suggest an enhancement title: "[Enhancement]: " labels: ["type/enhancement"] body: From f9915b1d6e21200b25df1193fb8f87801b9fcadd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Tue, 14 Jun 2022 11:13:13 -0500 Subject: [PATCH 16/19] Update .github/ISSUE_TEMPLATE/bug_report.yaml Co-authored-by: Kevin Wittek --- .github/ISSUE_TEMPLATE/bug_report.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 03fc5538851..80e0b47741d 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -93,4 +93,4 @@ body: description: | Any links or references to have more context about the issue. - Tip: You can attach a minimal sample project to reproduce the issue or log files by clicking this area to highlight it and then dragging files in. + Tip: You can attach a minimal sample project to reproduce the issue or provide further log files by clicking into this area to focus it and then dragging files in. From dbef8bcc20a4843d88a3609bcd0fa99245cc0b6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Tue, 14 Jun 2022 11:13:24 -0500 Subject: [PATCH 17/19] Update .github/ISSUE_TEMPLATE/enhancement.yaml Co-authored-by: Kevin Wittek --- .github/ISSUE_TEMPLATE/enhancement.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/enhancement.yaml b/.github/ISSUE_TEMPLATE/enhancement.yaml index 80dff4d1488..e384f255c61 100644 --- a/.github/ISSUE_TEMPLATE/enhancement.yaml +++ b/.github/ISSUE_TEMPLATE/enhancement.yaml @@ -11,7 +11,7 @@ body: id: module attributes: label: Module - description: Which testcontainers module applies the enhancement proposal? + description: For which Testcontainers module does the enhancement proposal apply? options: - Core - Azure From f0f50b092a20ac6acb3794f6a6357e27bad19e42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Tue, 14 Jun 2022 11:13:40 -0500 Subject: [PATCH 18/19] Update .github/ISSUE_TEMPLATE/enhancement.yaml Co-authored-by: Kevin Wittek --- .github/ISSUE_TEMPLATE/enhancement.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/enhancement.yaml b/.github/ISSUE_TEMPLATE/enhancement.yaml index e384f255c61..f06ea99c8ba 100644 --- a/.github/ISSUE_TEMPLATE/enhancement.yaml +++ b/.github/ISSUE_TEMPLATE/enhancement.yaml @@ -51,6 +51,6 @@ body: id: proposal attributes: label: Proposal - description: Also tell us, what did you expect to happen? + description: What should be improved? What are the limitations of the current implications that would be solved by the proposal? validations: required: true From 9f983218cbc42c16cef4cbd857e9da3f670e781c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Tue, 14 Jun 2022 11:13:48 -0500 Subject: [PATCH 19/19] Update .github/ISSUE_TEMPLATE/feature.yaml Co-authored-by: Kevin Wittek --- .github/ISSUE_TEMPLATE/feature.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature.yaml b/.github/ISSUE_TEMPLATE/feature.yaml index 8685e1d15ec..32edb0d25f5 100644 --- a/.github/ISSUE_TEMPLATE/feature.yaml +++ b/.github/ISSUE_TEMPLATE/feature.yaml @@ -1,5 +1,5 @@ name: Feature -description: File a feature +description: Suggest a new feature title: "[Feature]: " labels: ["type/feature"] body: