From 0f3a06c4d6cda5f8178004dd2be019c67588d860 Mon Sep 17 00:00:00 2001 From: Kerry Archibald Date: Mon, 30 Oct 2023 15:03:07 +1300 Subject: [PATCH 1/3] fix typo in component design issue template --- .github/ISSUE_TEMPLATE/component-design.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/component-design.md b/.github/ISSUE_TEMPLATE/component-design.md index 26c04e1..4f362fd 100644 --- a/.github/ISSUE_TEMPLATE/component-design.md +++ b/.github/ISSUE_TEMPLATE/component-design.md @@ -13,7 +13,7 @@ assignees: '' # Platform -- ... +- ... ```[tasklist] # Design phase From 4c8595a7b350d65b9a1c8c57ef154380fa4b9c74 Mon Sep 17 00:00:00 2001 From: Kerry Archibald Date: Mon, 30 Oct 2023 15:03:24 +1300 Subject: [PATCH 2/3] add bug report issue tempalte --- .github/ISSUE_TEMPLATE/defect.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/defect.yml diff --git a/.github/ISSUE_TEMPLATE/defect.yml b/.github/ISSUE_TEMPLATE/defect.yml new file mode 100644 index 0000000..0e529f5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/defect.yml @@ -0,0 +1,29 @@ +name: Bug report +about: Report a bug in a component +title: '' +labels: T-Defect +assignees: '' +body: + - type: dropdown + id: platform + attributes: + label: Platform + description: | + Web, iOS, Android. Add the corresponding label to the issue (i.e `P-Web` for Web) + options: + - "Web" + - "iOS" + - "Android" + validations: + required: true + - type: input + id: version + attributes: + label: Package version + - type: textarea + id: reproduction-steps + attributes: + label: Description + description: Please attach screenshots, videos or logs if you can. + validations: + required: true \ No newline at end of file From 2f52def8400606495a0d9209810e48e1e1d05798 Mon Sep 17 00:00:00 2001 From: Kerry Archibald Date: Mon, 30 Oct 2023 15:07:38 +1300 Subject: [PATCH 3/3] use markdown instead --- .github/ISSUE_TEMPLATE/defect.md | 20 ++++++++++++++++++++ .github/ISSUE_TEMPLATE/defect.yml | 29 ----------------------------- 2 files changed, 20 insertions(+), 29 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/defect.md delete mode 100644 .github/ISSUE_TEMPLATE/defect.yml diff --git a/.github/ISSUE_TEMPLATE/defect.md b/.github/ISSUE_TEMPLATE/defect.md new file mode 100644 index 0000000..e7a6563 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/defect.md @@ -0,0 +1,20 @@ +--- +name: Bug report +about: Report a bug in a component +title: '' +labels: T-Defect +assignees: '' + +--- + +# Platform + +- ... + +# Package version + +- ... + +# Description + + \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/defect.yml b/.github/ISSUE_TEMPLATE/defect.yml deleted file mode 100644 index 0e529f5..0000000 --- a/.github/ISSUE_TEMPLATE/defect.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Bug report -about: Report a bug in a component -title: '' -labels: T-Defect -assignees: '' -body: - - type: dropdown - id: platform - attributes: - label: Platform - description: | - Web, iOS, Android. Add the corresponding label to the issue (i.e `P-Web` for Web) - options: - - "Web" - - "iOS" - - "Android" - validations: - required: true - - type: input - id: version - attributes: - label: Package version - - type: textarea - id: reproduction-steps - attributes: - label: Description - description: Please attach screenshots, videos or logs if you can. - validations: - required: true \ No newline at end of file