From 018c601aa998cadf73861641880d6e90a4858541 Mon Sep 17 00:00:00 2001 From: alexey semenyuk Date: Sat, 30 Nov 2024 13:40:31 +0500 Subject: [PATCH 1/5] bug-report template Signed-off-by: alexey semenyuk --- .github/ISSUE_TEMPLATE/bug-report.yml | 62 +++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yml diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 000000000..2744461a7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,62 @@ +name: 🐞 Bug +description: File a bug/issue +title: "bug: " +labels: [bug] +body: + - type: markdown + attributes: + value: | + _The more information you share, the faster we can help you._ + Prior to opening the issue, please make sure that you: + - Use English (EN/US) to communicate. + - Search the [open issues](https://github.com/hyperledger/firefly/issues) to avoid duplicating the issue. + + - type: textarea + id: problem + attributes: + label: What happened? + description: | + Please provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. + If this matter is security related, please disclose it privately via security@hyperledger.org + validations: + required: true + + - type: textarea + id: expected + attributes: + label: What did you expect to happen? + validations: + required: true + + - type: textarea + id: repro + attributes: + label: How can we reproduce it (as minimally and precisely as possible)? + validations: + required: true + + - type: textarea + id: additional + attributes: + label: Anything else we need to know? + + - type: textarea + id: osVersion + attributes: + label: OS version + value: | +
+ + ```console + # On Linux: + $ cat /etc/os-release + # paste output here + $ uname -a + # paste output here + + # On Windows: + C:\> wmic os get Caption, Version, BuildNumber, OSArchitecture + # paste output here + ``` + +
From 72bb1dc20feebd83c8454086f3dd0a366e1c0204 Mon Sep 17 00:00:00 2001 From: alexey semenyuk Date: Sat, 30 Nov 2024 13:46:58 +0500 Subject: [PATCH 2/5] support template Signed-off-by: alexey semenyuk --- .github/ISSUE_TEMPLATE/config.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..51cdb2da7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: Support Request + url: https://discord.gg/hyperledger + about: Support request or question relating to Hyperledger Firefly From 118dd78a7bf87c7845ea55df898d2a7ecc70b864 Mon Sep 17 00:00:00 2001 From: alexey semenyuk Date: Sat, 30 Nov 2024 13:50:31 +0500 Subject: [PATCH 3/5] enhancement template Signed-off-by: alexey semenyuk --- .github/ISSUE_TEMPLATE/enhancement.yml | 27 ++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/enhancement.yml diff --git a/.github/ISSUE_TEMPLATE/enhancement.yml b/.github/ISSUE_TEMPLATE/enhancement.yml new file mode 100644 index 000000000..7ba36d42b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/enhancement.yml @@ -0,0 +1,27 @@ +name: Enhancement Tracking Issue +description: Provide supporting details for an enhancement +labels: [enhancement] +body: + - type: markdown + attributes: + value: | + _The more information you share, the faster we can help you._ + Prior to opening the issue, please make sure that you: + - Use English (EN/US) to communicate. + - Search the [open issues](https://github.com/hyperledger/firefly/issues) to avoid duplicating the issue. + + - type: textarea + id: enhancement + attributes: + label: What would you like to be added? + description: | + A clear and concise description of what you want to happen. + validations: + required: true + + - type: textarea + id: rationale + attributes: + label: Why is this needed? + validations: + required: true From af830a19759a698ba876f8446947f29e7d5ac2ea Mon Sep 17 00:00:00 2001 From: alexey semenyuk Date: Sat, 30 Nov 2024 13:51:50 +0500 Subject: [PATCH 4/5] improve_docs template Signed-off-by: alexey semenyuk --- .github/ISSUE_TEMPLATE/improve_docs.yml | 31 +++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/improve_docs.yml diff --git a/.github/ISSUE_TEMPLATE/improve_docs.yml b/.github/ISSUE_TEMPLATE/improve_docs.yml new file mode 100644 index 000000000..13220bcdc --- /dev/null +++ b/.github/ISSUE_TEMPLATE/improve_docs.yml @@ -0,0 +1,31 @@ +name: "Documentation Issue" +description: Issues related to documentation. +title: "docs: " +labels: [documentation] +body: + - type: markdown + attributes: + value: | + _The more information you share, the faster we can help you._ + Prior to opening the issue, please make sure that you: + - Use English (EN/US) to communicate. + - Search the [open issues](https://github.com/hyperledger/firefly/issues) to avoid duplicating the issue. + + - type: textarea + id: current-state + attributes: + label: Current State + description: Describe the current state of the documentation. + placeholder: | + The documentation for the API in this page (url) is missing ... + validations: + required: true + - type: textarea + id: desired-state + attributes: + label: Desired State + description: Describe the desired state the documentation should be in. + placeholder: | + Add here ... + validations: + required: true From 49b00afe27933bf1fd293b4771e341dea2aed388 Mon Sep 17 00:00:00 2001 From: alexey semenyuk Date: Mon, 2 Dec 2024 20:02:47 +0500 Subject: [PATCH 5/5] Update security email Signed-off-by: alexey semenyuk --- .github/ISSUE_TEMPLATE/bug-report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 2744461a7..6387af06a 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -17,7 +17,7 @@ body: label: What happened? description: | Please provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. - If this matter is security related, please disclose it privately via security@hyperledger.org + If this matter is security related, please disclose it privately via security@lfdecentralizedtrust.org validations: required: true