From 83fdd5acf1d60e2d5cee2355e4e92e5d708572ad Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Thu, 17 Nov 2022 11:13:31 -0500 Subject: [PATCH 1/2] chore: add discussion template for RFCs --- .github/DISCUSSION_TEMPLATE/rfcs.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/DISCUSSION_TEMPLATE/rfcs.yml diff --git a/.github/DISCUSSION_TEMPLATE/rfcs.yml b/.github/DISCUSSION_TEMPLATE/rfcs.yml new file mode 100644 index 00000000000..a27210ca9d1 --- /dev/null +++ b/.github/DISCUSSION_TEMPLATE/rfcs.yml @@ -0,0 +1,24 @@ +title: RFCs - Your Title Here +labels: ['rfc'] +body: + - type: textarea + id: rfc + attributes: + label: RFC + value: | + Suggested changes... + - type: textarea + id: additional + attributes: + label: Additional Info + value: | + Any additional info... + - type: checkboxes + id: required-checks + attributes: + label: Before you submit your RFC, please confirm the following. If any of these required steps are not taken, we may not be able to review your RFC. Help us to help you! + options: + - label: I have [searched for related discussions](https://github.com/typescript-eslint/typescript-eslint/discussions) and [searched for related issues](https://github.com/typescript-eslint/typescript-eslint/issues) and found none that match my proposal. + required: true + - label: I have [read the FAQ](https://typescript-eslint.io/docs/linting/troubleshooting) and my problem is not listed. + required: true From c09e3ec1eaddd337ba01178d70be476e896b37d7 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Thu, 17 Nov 2022 11:20:23 -0500 Subject: [PATCH 2/2] Alphabetize all the things --- .github/DISCUSSION_TEMPLATE/rfcs.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/DISCUSSION_TEMPLATE/rfcs.yml b/.github/DISCUSSION_TEMPLATE/rfcs.yml index a27210ca9d1..0e0b99abf05 100644 --- a/.github/DISCUSSION_TEMPLATE/rfcs.yml +++ b/.github/DISCUSSION_TEMPLATE/rfcs.yml @@ -1,24 +1,24 @@ -title: RFCs - Your Title Here -labels: ['rfc'] body: - - type: textarea - id: rfc - attributes: + - attributes: label: RFC value: | Suggested changes... - - type: textarea - id: additional - attributes: + id: rfc + type: textarea + - attributes: label: Additional Info value: | Any additional info... - - type: checkboxes - id: required-checks - attributes: + id: additional + type: textarea + - attributes: label: Before you submit your RFC, please confirm the following. If any of these required steps are not taken, we may not be able to review your RFC. Help us to help you! options: - label: I have [searched for related discussions](https://github.com/typescript-eslint/typescript-eslint/discussions) and [searched for related issues](https://github.com/typescript-eslint/typescript-eslint/issues) and found none that match my proposal. required: true - label: I have [read the FAQ](https://typescript-eslint.io/docs/linting/troubleshooting) and my problem is not listed. required: true + id: required-checks + type: checkboxes +labels: ['rfc'] +title: Your Title Here