From bd02fda5358bf3e8950fb7cad58587de280f1e6e Mon Sep 17 00:00:00 2001 From: Wyatt Barnes Date: Thu, 23 Sep 2021 22:22:50 -0500 Subject: [PATCH 1/7] Init feature_request template --- .github/ISSUE_TEMPLATE/feature_request.yml | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000000..f3aa01f5a27 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,41 @@ +name: Bug Report +description: File a bug report +labels: ["bug"] +body: + - type: checkboxes + attributes: + label: Is there an existing issue for this? + description: Please search to see if an issue already exists for the feature you're requesting + options: + - label: I have searched the existing issues + required: true + - type: textarea + attributes: + label: Feature Request + description: A concise description of the feature you're requesting + validations: + required: true + - type: textarea + attributes: + label: Use Cases + description: A concise description of use cases for the feature you're requesting + validations: + required: true + - type: textarea + attributes: + label: Implementation Ideas + description: Do you have ideas regarding the implementation of this feature? + - type: textarea + attributes: + label: Feature Examples/References + description: Do you have any examples or referneces regarding this feature? + placeholder: | + - [EIP-1559](https://eips.ethereum.org/EIPS/eip-1559) + - [Ethers' implementation](https://github.com/ethers-io/ethers.js/blob/c5bca7767e3f3d43e3d0bd3c9e9420321ee9907a/packages/abstract-signer/src.ts/index.ts#L199) + - type: checkboxes + attributes: + label: Are you willing to implement this feature? + options: + - label: Yes + - label: No + required: true From 95ff02743ae5acc6871ef562abb98a9b00c9d684 Mon Sep 17 00:00:00 2001 From: Wyatt Barnes Date: Thu, 23 Sep 2021 22:28:41 -0500 Subject: [PATCH 2/7] Correct name and description --- .github/ISSUE_TEMPLATE/feature_request.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index f3aa01f5a27..9c62fa188f5 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,6 +1,6 @@ -name: Bug Report -description: File a bug report -labels: ["bug"] +name: Feature Request +description: Request a feature +labels: ["Feature Request"] body: - type: checkboxes attributes: From 53ba437a3edd506776c2efda361dc91d64c70abe Mon Sep 17 00:00:00 2001 From: Wyatt Barnes Date: Thu, 23 Sep 2021 22:33:35 -0500 Subject: [PATCH 3/7] Correct checkbox syntax --- .github/ISSUE_TEMPLATE/feature_request.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 9c62fa188f5..77b2fc46380 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -35,7 +35,4 @@ body: - type: checkboxes attributes: label: Are you willing to implement this feature? - options: - - label: Yes - - label: No - required: true + options: [Yes, No] From 9f4e297366209c8c7d4f478b2d23d286f2073d23 Mon Sep 17 00:00:00 2001 From: Wyatt Barnes Date: Thu, 23 Sep 2021 22:37:38 -0500 Subject: [PATCH 4/7] Correct checkbox syntax --- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 77b2fc46380..c7d310811f9 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -35,4 +35,4 @@ body: - type: checkboxes attributes: label: Are you willing to implement this feature? - options: [Yes, No] + options: ["Yes", "No"] From e912212356dfa723a571905e8d25c2181483d2e0 Mon Sep 17 00:00:00 2001 From: Wyatt Barnes Date: Thu, 23 Sep 2021 22:39:34 -0500 Subject: [PATCH 5/7] Correct checkbox syntax --- .github/ISSUE_TEMPLATE/feature_request.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index c7d310811f9..661252e01d0 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -35,4 +35,5 @@ body: - type: checkboxes attributes: label: Are you willing to implement this feature? - options: ["Yes", "No"] + options: + - label: Yes From 9bde8123269c8124ebfa8f940fe92795953ecb28 Mon Sep 17 00:00:00 2001 From: Wyatt Barnes Date: Thu, 23 Sep 2021 22:41:05 -0500 Subject: [PATCH 6/7] Correct checkbox syntax --- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 661252e01d0..be184aa8bcb 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -36,4 +36,4 @@ body: attributes: label: Are you willing to implement this feature? options: - - label: Yes + - label: "Yes" From 3c8b0046af66c7937bf5805cfa5745a75b8457d2 Mon Sep 17 00:00:00 2001 From: Wyatt Barnes Date: Thu, 23 Sep 2021 23:09:50 -0500 Subject: [PATCH 7/7] Fix typo, update reference link --- .github/ISSUE_TEMPLATE/feature_request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index be184aa8bcb..148ee295ba9 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -28,10 +28,10 @@ body: - type: textarea attributes: label: Feature Examples/References - description: Do you have any examples or referneces regarding this feature? + description: Do you have any examples or references regarding this feature? placeholder: | - [EIP-1559](https://eips.ethereum.org/EIPS/eip-1559) - - [Ethers' implementation](https://github.com/ethers-io/ethers.js/blob/c5bca7767e3f3d43e3d0bd3c9e9420321ee9907a/packages/abstract-signer/src.ts/index.ts#L199) + - [Ethers' implementation](https://github.com/ethers-io/ethers.js/blob/master/packages/abstract-signer/src.ts/index.ts) - type: checkboxes attributes: label: Are you willing to implement this feature?