From 21f7ef83c7a70c468d3948677136a3d9124b5269 Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Tue, 28 Nov 2023 00:08:18 +0530 Subject: [PATCH 01/23] chore: Add bug report template --- .github/ISSUE_TEMPLATE/bug-report.yml | 47 +++++++++++++++++++++++++++ 1 file changed, 47 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..b6f0d0cdf --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,47 @@ +name: "Bug Report" +labels: "bug" +description: Create a bug report to help us improve +body: + - type: markdown + attributes: + value: + Thank you for reporting an issue. + Please fill in as much of the form below as you're able to. + - type: textarea + attributes: + label: Issue Description + description: Please provide a clear and concise description of the problem. + - type: textarea + attributes: + label: Steps to Reproduce + description: Please provide step-by-step instructions to reproduce the issue. Include code snippets, error messages, and any other relevant information. + - type: textarea + attributes: + label: Expected Behavior + description: Describe what you expected to happen. + - type: textarea + attributes: + label: Current Behavior + description: Describe what is currently happening. + - type: textarea + attributes: + label: Screenshots (optional) + description: If applicable, add screenshots to help explain the issue. + - type: input + attributes: + label: Operating System [e.g., Windows 10] + - type: input + attributes: + label: Browser [e.g., Chrome, Firefox] + - type: input + attributes: + label: Version [e.g., 2.0.1] + - type: checkboxes + attributes: + label: Please check the boxes that apply to this issue report. + options: + - label: I have searched the existing issues to make sure this is not a duplicate. + - label: I have provided steps to reproduce the issue. + - label: I have included relevant environment information. + - label: I have included any relevant screenshots. + - label: I understand that this is a voluntary contribution and that there is no guarantee of resolution. From 18610b6dd736f5fa2cdc733bbf75e346140427d0 Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Tue, 28 Nov 2023 00:23:41 +0530 Subject: [PATCH 02/23] chore: Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 58 +++++++++++++++++---------- 1 file changed, 37 insertions(+), 21 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index b6f0d0cdf..2abc46246 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -1,20 +1,16 @@ name: "Bug Report" labels: "bug" -description: Create a bug report to help us improve +description: Create a bug report to help us make OpenSign the world's best document e-signature platform body: - type: markdown attributes: value: - Thank you for reporting an issue. - Please fill in as much of the form below as you're able to. + Thank you for reporting the issue. + Please fill in as much of the form below as you're able to so that contributors have a clear understanding of the issue. - type: textarea attributes: - label: Issue Description - description: Please provide a clear and concise description of the problem. - - type: textarea - attributes: - label: Steps to Reproduce - description: Please provide step-by-step instructions to reproduce the issue. Include code snippets, error messages, and any other relevant information. + label: Issue Description: + description: Please provide a clear & concise description of the problem. - type: textarea attributes: label: Expected Behavior @@ -22,26 +18,46 @@ body: - type: textarea attributes: label: Current Behavior - description: Describe what is currently happening. + description: Describe what is happening instead. - type: textarea attributes: - label: Screenshots (optional) - description: If applicable, add screenshots to help explain the issue. - - type: input + label: Steps to reproduce + description: Please provide step-by-step instructions to reproduce the issue. Include code snippets, URLs, error messages and any other relevant information. + - type: textarea attributes: - label: Operating System [e.g., Windows 10] + label: Screenshots of the issue(optional) + description: Add screenshots to better explain the issue. - type: input attributes: - label: Browser [e.g., Chrome, Firefox] + label: Operating System [e.g., MacOS Sonoma 14.1, Windows 11] + - type: dropdown + id: browsers + attributes: + label: What browsers are you seeing the problem on? + multiple: true + options: + - Chrome + - Firefox + - Safari + - Microsoft Edge - type: input attributes: - label: Version [e.g., 2.0.1] + label: What version of OpenSign™ are you seeing this issue on? [e.g. 1.0.6] + validations: + required: true + - type: dropdown + id: browsers + attributes: + label: What environment are you seeing the problem on? + multiple: true + options: + - Production (app.opensignlabs.com) + - Staging (staging-app.opensignlabs.com) + - Hosted (app.yourdomain.com) + - Dev (localhost:3000) - type: checkboxes attributes: label: Please check the boxes that apply to this issue report. options: - - label: I have searched the existing issues to make sure this is not a duplicate. - - label: I have provided steps to reproduce the issue. - - label: I have included relevant environment information. - - label: I have included any relevant screenshots. - - label: I understand that this is a voluntary contribution and that there is no guarantee of resolution. + - label: I have searched the existing issues & discussions to make sure that this is not a duplicate. + - label: I From b0d72f8fb0449feacc609af3750af6c318cc3f69 Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Tue, 28 Nov 2023 00:25:23 +0530 Subject: [PATCH 03/23] chore: Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 2abc46246..0917b79a0 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -46,7 +46,7 @@ body: validations: required: true - type: dropdown - id: browsers + id: environment attributes: label: What environment are you seeing the problem on? multiple: true @@ -60,4 +60,3 @@ body: label: Please check the boxes that apply to this issue report. options: - label: I have searched the existing issues & discussions to make sure that this is not a duplicate. - - label: I From 4473331745a006b133e3654e4f599cb4a3eb323d Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Tue, 28 Nov 2023 00:26:23 +0530 Subject: [PATCH 04/23] chore: Update bug-report.yml --- .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 0917b79a0..26f465882 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -9,7 +9,7 @@ body: Please fill in as much of the form below as you're able to so that contributors have a clear understanding of the issue. - type: textarea attributes: - label: Issue Description: + label: Issue Description description: Please provide a clear & concise description of the problem. - type: textarea attributes: From b5e0512be3fd8ab5b58f548e8bfe86cfdf065dcd Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Tue, 28 Nov 2023 01:26:40 +0530 Subject: [PATCH 05/23] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 26f465882..513204c1f 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -2,11 +2,6 @@ name: "Bug Report" labels: "bug" description: Create a bug report to help us make OpenSign the world's best document e-signature platform body: - - type: markdown - attributes: - value: - Thank you for reporting the issue. - Please fill in as much of the form below as you're able to so that contributors have a clear understanding of the issue. - type: textarea attributes: label: Issue Description From d49f243f86738ebd6cdd3d822edf6369cc78dc04 Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Tue, 28 Nov 2023 01:29:00 +0530 Subject: [PATCH 06/23] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 513204c1f..6fac9f8c6 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -1,6 +1,6 @@ name: "Bug Report" labels: "bug" -description: Create a bug report to help us make OpenSign the world's best document e-signature platform +description: Create a bug report to help us make OpenSign™ the world's best document e-signature platform body: - type: textarea attributes: @@ -24,7 +24,7 @@ body: description: Add screenshots to better explain the issue. - type: input attributes: - label: Operating System [e.g., MacOS Sonoma 14.1, Windows 11] + label: Operating System [e.g. MacOS Sonoma 14.1, Windows 11] - type: dropdown id: browsers attributes: @@ -49,9 +49,10 @@ body: - Production (app.opensignlabs.com) - Staging (staging-app.opensignlabs.com) - Hosted (app.yourdomain.com) - - Dev (localhost:3000) + - Dev (localhost or vercel) - type: checkboxes attributes: label: Please check the boxes that apply to this issue report. options: - label: I have searched the existing issues & discussions to make sure that this is not a duplicate. + required: true From e22590efee46fcd29debc902fef1bf446c523215 Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Tue, 28 Nov 2023 01:30:04 +0530 Subject: [PATCH 07/23] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 6fac9f8c6..8f7942bea 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -55,4 +55,5 @@ body: label: Please check the boxes that apply to this issue report. options: - label: I have searched the existing issues & discussions to make sure that this is not a duplicate. + validations: required: true From 4231c3f4a48d1d10c8259336ed13ad8cdde1334f Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Tue, 28 Nov 2023 01:33:58 +0530 Subject: [PATCH 08/23] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 8f7942bea..97a4cbe2c 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -57,3 +57,11 @@ body: - label: I have searched the existing issues & discussions to make sure that this is not a duplicate. validations: required: true + - type: checkboxes + id: terms + attributes: + label: Code of Conduct + description: By submitting this issue, you agree to follow our [Code of Conduct](https://www.opensignlabs.com) + options: + - label: I agree to follow this project's Code of Conduct + required: true From 1f50f5b44ef2362d27a6002be8236fa230d4b493 Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Tue, 28 Nov 2023 01:37:32 +0530 Subject: [PATCH 09/23] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 97a4cbe2c..9def4889e 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -65,3 +65,5 @@ body: options: - label: I agree to follow this project's Code of Conduct required: true + - label: I have searched the existing issues & discussions to make sure that this is not a duplicate. + required: true From af6515ab2c6cb9421754ed52ba13bda7545aad2e Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Tue, 28 Nov 2023 01:47:06 +0530 Subject: [PATCH 10/23] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 9def4889e..25afa06e4 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -1,5 +1,8 @@ name: "Bug Report" labels: "bug" +title: "[Bug]: " +assignees: + - andrew-opensignlabs description: Create a bug report to help us make OpenSign™ the world's best document e-signature platform body: - type: textarea @@ -35,6 +38,7 @@ body: - Firefox - Safari - Microsoft Edge + default: Chrome - type: input attributes: label: What version of OpenSign™ are you seeing this issue on? [e.g. 1.0.6] From 6f21acd57b487fb405f8d2fb11bac33c27959d56 Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Tue, 28 Nov 2023 01:48:54 +0530 Subject: [PATCH 11/23] Update bug-report.yml --- .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 25afa06e4..222724efe 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -38,7 +38,7 @@ body: - Firefox - Safari - Microsoft Edge - default: Chrome + default: 0 - type: input attributes: label: What version of OpenSign™ are you seeing this issue on? [e.g. 1.0.6] From ad26d971eaa7ade66d26dffe054425ed92499487 Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Tue, 28 Nov 2023 02:38:35 +0530 Subject: [PATCH 12/23] Create feature-request.yml --- .github/ISSUE_TEMPLATE/feature-request.yml | 73 ++++++++++++++++++++++ 1 file changed, 73 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 000000000..f4bab9edd --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -0,0 +1,73 @@ +name: "Feature request" +labels: "bug,up-for-grabs" +title: "[Bug]: " +assignees: + - andrew-opensignlabs +description: Create a bug report to help us make OpenSign™ the world's best document e-signature platform +body: + - type: textarea + attributes: + label: Issue Description + description: Please provide a clear & concise description of the problem. + - type: textarea + attributes: + label: Expected Behavior + description: Describe what you expected to happen. + - type: textarea + attributes: + label: Current Behavior + description: Describe what is happening instead. + - type: textarea + attributes: + label: Steps to reproduce + description: Please provide step-by-step instructions to reproduce the issue. Include code snippets, URLs, error messages and any other relevant information. + - type: textarea + attributes: + label: Screenshots of the issue(optional) + description: Add screenshots to better explain the issue. + - type: input + attributes: + label: Operating System [e.g. MacOS Sonoma 14.1, Windows 11] + - type: dropdown + id: browsers + attributes: + label: What browsers are you seeing the problem on? + multiple: true + options: + - Chrome + - Firefox + - Safari + - Microsoft Edge + default: 0 + - type: input + attributes: + label: What version of OpenSign™ are you seeing this issue on? [e.g. 1.0.6] + validations: + required: true + - type: dropdown + id: environment + attributes: + label: What environment are you seeing the problem on? + multiple: true + options: + - Production (app.opensignlabs.com) + - Staging (staging-app.opensignlabs.com) + - Hosted (app.yourdomain.com) + - Dev (localhost or vercel) + - type: checkboxes + attributes: + label: Please check the boxes that apply to this issue report. + options: + - label: I have searched the existing issues & discussions to make sure that this is not a duplicate. + validations: + required: true + - type: checkboxes + id: terms + attributes: + label: Code of Conduct + description: By submitting this issue, you agree to follow our [Code of Conduct](https://www.opensignlabs.com) + options: + - label: I agree to follow this project's Code of Conduct + required: true + - label: I have searched the existing issues & discussions to make sure that this is not a duplicate. + required: true From c9703a3dded7c805f7a4c281d2971071ad74faa3 Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Tue, 28 Nov 2023 02:40:11 +0530 Subject: [PATCH 13/23] Update bug-report.yml --- .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 222724efe..443b7b425 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -1,5 +1,5 @@ name: "Bug Report" -labels: "bug" +labels: "bug,up-for-grabs" title: "[Bug]: " assignees: - andrew-opensignlabs From 7c9a0abb74cf90617e04a5eadc13eaefac7b97b8 Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Tue, 28 Nov 2023 02:42:37 +0530 Subject: [PATCH 14/23] Update bug-report.yml --- .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 443b7b425..5b17f9bf4 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -1,5 +1,5 @@ name: "Bug Report" -labels: "bug,up-for-grabs" +labels: ["bug","up-for-grabs"] title: "[Bug]: " assignees: - andrew-opensignlabs From 0e411dd0e01480aba8a33acbb838bc87e90c5ebe Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Tue, 28 Nov 2023 02:43:10 +0530 Subject: [PATCH 15/23] Update feature-request.yml --- .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 f4bab9edd..edf079418 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yml +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -1,6 +1,6 @@ name: "Feature request" -labels: "bug,up-for-grabs" -title: "[Bug]: " +labels: "enhancement" +title: "[enhancement]: " assignees: - andrew-opensignlabs description: Create a bug report to help us make OpenSign™ the world's best document e-signature platform From 23a29b70100aaef925356229e6bddd59debad797 Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Wed, 29 Nov 2023 02:02:15 +0530 Subject: [PATCH 16/23] Update feature-request.yml --- .github/ISSUE_TEMPLATE/feature-request.yml | 102 ++++++++++----------- 1 file changed, 49 insertions(+), 53 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml index edf079418..6c580f273 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yml +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -1,66 +1,62 @@ -name: "Feature request" -labels: "enhancement" -title: "[enhancement]: " -assignees: - - andrew-opensignlabs -description: Create a bug report to help us make OpenSign™ the world's best document e-signature platform +name: Feature Request +description: Suggest an idea for this project +title: "Feature Request: [Short Description]" +labels: [feature request, needs triage] body: - - type: textarea - attributes: - label: Issue Description - description: Please provide a clear & concise description of the problem. - - type: textarea - attributes: - label: Expected Behavior - description: Describe what you expected to happen. - - type: textarea - attributes: - label: Current Behavior - description: Describe what is happening instead. - - type: textarea - attributes: - label: Steps to reproduce - description: Please provide step-by-step instructions to reproduce the issue. Include code snippets, URLs, error messages and any other relevant information. - - type: textarea - attributes: - label: Screenshots of the issue(optional) - description: Add screenshots to better explain the issue. - - type: input - attributes: - label: Operating System [e.g. MacOS Sonoma 14.1, Windows 11] - - type: dropdown - id: browsers + - type: markdown attributes: - label: What browsers are you seeing the problem on? - multiple: true - options: - - Chrome - - Firefox - - Safari - - Microsoft Edge - default: 0 + value: | + ## Thanks for taking the time to fill out this feature request! + - type: input + id: title attributes: - label: What version of OpenSign™ are you seeing this issue on? [e.g. 1.0.6] + label: Feature Title + description: What would you call this feature? + placeholder: e.g., Advanced Signature Verification validations: required: true - - type: dropdown - id: environment + + - type: textarea + id: feature-description attributes: - label: What environment are you seeing the problem on? + label: Feature Description + description: | + Please provide a detailed description of the feature you're proposing. + placeholder: | + e.g., I'm proposing an advanced signature verification feature that... + validations: + required: true - type: dropdown + id: featuretype + attributes: + label: What type of feature are you requesting? multiple: true options: - - Production (app.opensignlabs.com) - - Staging (staging-app.opensignlabs.com) - - Hosted (app.yourdomain.com) - - Dev (localhost or vercel) - - type: checkboxes + - UI/UX Improvement + - Security / Compliance + - Performance / Optimization + - 3rd party integration + - Other + - type: dropdown + id: importance + attributes: + label: Importance + description: How important is this feature to you? + options: + - Critical + - High + - Medium + - Low + validations: + required: true + + - type: textarea + id: additional-context attributes: - label: Please check the boxes that apply to this issue report. - options: - - label: I have searched the existing issues & discussions to make sure that this is not a duplicate. - validations: - required: true + label: Additional Context + description: Any other context or screenshots about the feature request here. + placeholder: Additional details, examples, or screenshots... + - type: checkboxes id: terms attributes: From 000f8c1626f1f8ab8153f3b76441031e742d025d Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Wed, 29 Nov 2023 02:03:21 +0530 Subject: [PATCH 17/23] Update feature-request.yml --- .github/ISSUE_TEMPLATE/feature-request.yml | 23 +++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml index 6c580f273..35f17a802 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yml +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -26,17 +26,18 @@ body: placeholder: | e.g., I'm proposing an advanced signature verification feature that... validations: - required: true - type: dropdown - id: featuretype - attributes: - label: What type of feature are you requesting? - multiple: true - options: - - UI/UX Improvement - - Security / Compliance - - Performance / Optimization - - 3rd party integration - - Other + required: true + - type: dropdown + id: featuretype + attributes: + label: What type of feature are you requesting? + multiple: true + options: + - UI/UX Improvement + - Security / Compliance + - Performance / Optimization + - 3rd party integration + - Other - type: dropdown id: importance attributes: From bce49a79d5a99b21bafb7e45950219ab06e75747 Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Wed, 29 Nov 2023 02:04:14 +0530 Subject: [PATCH 18/23] Update feature-request.yml --- .github/ISSUE_TEMPLATE/feature-request.yml | 42 +++++++++++----------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml index 35f17a802..8f3b3d460 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yml +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -28,28 +28,28 @@ body: validations: required: true - type: dropdown - id: featuretype - attributes: - label: What type of feature are you requesting? - multiple: true - options: - - UI/UX Improvement - - Security / Compliance - - Performance / Optimization - - 3rd party integration - - Other + id: featuretype + attributes: + label: What type of feature are you requesting? + multiple: true + options: + - UI/UX Improvement + - Security / Compliance + - Performance / Optimization + - 3rd party integration + - Other - type: dropdown - id: importance - attributes: - label: Importance - description: How important is this feature to you? - options: - - Critical - - High - - Medium - - Low - validations: - required: true + id: importance + attributes: + label: Importance + description: How important is this feature to you? + options: + - Critical + - High + - Medium + - Low + validations: + required: true - type: textarea id: additional-context From dd8b8525d8d648aae45d3263a18928af8ebf17b4 Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Wed, 29 Nov 2023 02:18:33 +0530 Subject: [PATCH 19/23] Create pull-request.yml --- .../PULL_REQUEST_TEMPLATE/pull-request.yml | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE/pull-request.yml diff --git a/.github/PULL_REQUEST_TEMPLATE/pull-request.yml b/.github/PULL_REQUEST_TEMPLATE/pull-request.yml new file mode 100644 index 000000000..da3f3a1c8 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/pull-request.yml @@ -0,0 +1,45 @@ +name: Pull Request +description: Template for submitting pull requests +title: "PR: [Your Title Here]" +labels: [pull request] +body: + - type: markdown + attributes: + value: | + # Description + Please include a summary of the change, the issue it addresses, and any dependencies. + + Fixes # (issue number) + + - type: checkboxes + attributes: + label: Type of Change + options: + - label: Bug fix (non-breaking change which fixes an issue) + - label: New feature (non-breaking change which adds functionality) + - label: Breaking change (fix or feature that would cause existing functionality not to work as expected) + - label: Documentation update + + - type: markdown + attributes: + value: | + ## Testing + Describe the tests that you ran to verify your changes. + + - type: checkboxes + attributes: + label: Checklist + options: + - label: I have performed a self-review of my own code + - label: I have commented my code, particularly in hard-to-understand areas + - label: I have made corresponding changes to the documentation + - label: My changes generate no new warnings + - label: I have added tests that prove my fix is effective or that my feature works + - label: New and existing unit tests pass locally with my changes + - label: Any dependent changes have been merged and published in downstream modules + + - type: markdown + attributes: + value: | + ## Screenshots + Attach any screenshots or visual representations of the changes (if applicable). From 59dd919573c5d81829e232e58d6c4e22f2e24d52 Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Wed, 29 Nov 2023 02:29:42 +0530 Subject: [PATCH 20/23] Delete .github/PULL_REQUEST_TEMPLATE/pull-request.yml --- .../PULL_REQUEST_TEMPLATE/pull-request.yml | 45 ------------------- 1 file changed, 45 deletions(-) delete mode 100644 .github/PULL_REQUEST_TEMPLATE/pull-request.yml diff --git a/.github/PULL_REQUEST_TEMPLATE/pull-request.yml b/.github/PULL_REQUEST_TEMPLATE/pull-request.yml deleted file mode 100644 index da3f3a1c8..000000000 --- a/.github/PULL_REQUEST_TEMPLATE/pull-request.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Pull Request -description: Template for submitting pull requests -title: "PR: [Your Title Here]" -labels: [pull request] -body: - - type: markdown - attributes: - value: | - # Description - Please include a summary of the change, the issue it addresses, and any dependencies. - - Fixes # (issue number) - - - type: checkboxes - attributes: - label: Type of Change - options: - - label: Bug fix (non-breaking change which fixes an issue) - - label: New feature (non-breaking change which adds functionality) - - label: Breaking change (fix or feature that would cause existing functionality not to work as expected) - - label: Documentation update - - - type: markdown - attributes: - value: | - ## Testing - Describe the tests that you ran to verify your changes. - - - type: checkboxes - attributes: - label: Checklist - options: - - label: I have performed a self-review of my own code - - label: I have commented my code, particularly in hard-to-understand areas - - label: I have made corresponding changes to the documentation - - label: My changes generate no new warnings - - label: I have added tests that prove my fix is effective or that my feature works - - label: New and existing unit tests pass locally with my changes - - label: Any dependent changes have been merged and published in downstream modules - - - type: markdown - attributes: - value: | - ## Screenshots - Attach any screenshots or visual representations of the changes (if applicable). From 078582ae07d338d51d1be1468c927a56387329b1 Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Wed, 29 Nov 2023 02:30:20 +0530 Subject: [PATCH 21/23] Create pull_request_template.md --- .../pull_request_template.md | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE/pull_request_template.md diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md new file mode 100644 index 000000000..17eaa7942 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md @@ -0,0 +1,26 @@ +--- +name: "Pull Request" +about: "Describe the purpose of this pull request." +title: "PR: [Title here]" +labels: "pull request" +assignees: "" +--- + +# Description +Please include a summary of the change and which issue is fixed. + +Fixes # (issue number) + +# Type of Change +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- ... + +# How Has This Been Tested? +Please describe the tests that you ran to verify your changes. ... + +# Checklist: +- [ ] I have performed a self-review of my own code +- ... + +# Screenshots (if appropriate): From ced8b3cbce7f04a19b5cd63fc9ef494df1ddb19a Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Wed, 29 Nov 2023 02:35:12 +0530 Subject: [PATCH 22/23] Delete .github/PULL_REQUEST_TEMPLATE directory --- .../pull_request_template.md | 26 ------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/PULL_REQUEST_TEMPLATE/pull_request_template.md diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md deleted file mode 100644 index 17eaa7942..000000000 --- a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -name: "Pull Request" -about: "Describe the purpose of this pull request." -title: "PR: [Title here]" -labels: "pull request" -assignees: "" ---- - -# Description -Please include a summary of the change and which issue is fixed. - -Fixes # (issue number) - -# Type of Change -- [ ] Bug fix (non-breaking change which fixes an issue) -- [ ] New feature (non-breaking change which adds functionality) -- ... - -# How Has This Been Tested? -Please describe the tests that you ran to verify your changes. ... - -# Checklist: -- [ ] I have performed a self-review of my own code -- ... - -# Screenshots (if appropriate): From cc8d81804e020f4b7e8aa8f48944d3f823b59505 Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Wed, 29 Nov 2023 02:45:53 +0530 Subject: [PATCH 23/23] Update feature-request.yml --- .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 8f3b3d460..9093abbd6 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yml +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -1,5 +1,5 @@ name: Feature Request -description: Suggest an idea for this project +description: Suggest an idea for OpenSign™ title: "Feature Request: [Short Description]" labels: [feature request, needs triage] body: