From b2888dae32cefae3c6d71a160dd1d38610e2b48a Mon Sep 17 00:00:00 2001 From: Patryk Andrzejewski Date: Mon, 29 May 2023 20:58:44 +0200 Subject: [PATCH] Create RFC template (#3698) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Create RFC template * Update .github/ISSUE_TEMPLATE/rfc.yaml Co-authored-by: Krzysztof Żuraw <9116238+krzysztofzuraw@users.noreply.github.com> --------- Co-authored-by: Krzysztof Żuraw <9116238+krzysztofzuraw@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/rfc.yaml | 56 +++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/rfc.yaml diff --git a/.github/ISSUE_TEMPLATE/rfc.yaml b/.github/ISSUE_TEMPLATE/rfc.yaml new file mode 100644 index 000000000..d03f451b6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/rfc.yaml @@ -0,0 +1,56 @@ +name: RFC +description: Start gathering informations regarding new functionality +title: "[RFC]: " +labels: [RFC] +assignees: + - andrzejewski + - krzysztofzuraw +body: + - type: textarea + id: introduction + attributes: + label: Short description of the feature + description: Provide short description of the future, its intention, what problem it solves. + placeholder: | + - What problem does it solve? + - What feature should generally do? + render: Markdown + validations: + required: true + - type: textarea + id: description + attributes: + label: Full description + description: Provide full description of a given feature. Provide as much details as you can. + placeholder: | + Explain in details: + - What feature should do + - How certain UI should look like + - How UI should change depending on the context eg. different permissions, different resource data + render: Markdown + validations: + required: true + - type: textarea + id: acceptance-criteria + attributes: + label: Acceptance Criteria + description: Define Acceptance Criteria + placeholder: | + - As user I should ... + - As develoer I can ... + - When the user switches X to Y, the Z should be displayed... + render: Markdown + validations: + required: true + - type: textarea + id: notes + attributes: + label: Additional notes + description: Write down any additional notes + placeholder: | + - Paste important link + - Define additional action points + - Define your concerns + render: Markdown + validations: + required: false