From abf45b80197702625eb9ab4bf7b0130bd87098f8 Mon Sep 17 00:00:00 2001 From: Danish Naglekar <36135520+Power-Maverick@users.noreply.github.com> Date: Tue, 29 Jun 2021 10:02:12 -0400 Subject: [PATCH 1/6] Create issue-form-bug.yaml --- .github/ISSUE_TEMPLATE/issue-form-bug.yaml | 62 ++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/issue-form-bug.yaml diff --git a/.github/ISSUE_TEMPLATE/issue-form-bug.yaml b/.github/ISSUE_TEMPLATE/issue-form-bug.yaml new file mode 100644 index 0000000..78981c5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue-form-bug.yaml @@ -0,0 +1,62 @@ +name: Bug Report +description: File a bug report +title: "[Bug]: " +labels: [bug, triage] +assignees: + - octocat +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: input + id: contact + attributes: + label: Contact Details + description: How can we get in touch with you if we need more info? + placeholder: ex. email@example.com + validations: + required: false + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Also tell us, what did you expect to happen? + placeholder: Tell us what you see! + value: "A bug happened!" + validations: + required: true + - type: dropdown + id: version + attributes: + label: Version + description: What version of our software are you running? + options: + - 1.0.2 (Default) + - 1.0.3 (Edge) + validations: + required: true + - type: dropdown + id: browsers + attributes: + label: What browsers are you seeing the problem on? + multiple: true + options: + - Firefox + - Chrome + - Safari + - Microsoft Edge + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: shell + - type: checkboxes + id: terms + attributes: + label: Code of Conduct + description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com) + options: + - label: I agree to follow this project's Code of Conduct + required: true From d3daa8b60e3cd065d73d4552363d7814d8e50fb1 Mon Sep 17 00:00:00 2001 From: Danish Naglekar <36135520+Power-Maverick@users.noreply.github.com> Date: Tue, 29 Jun 2021 10:12:02 -0400 Subject: [PATCH 2/6] Update issue-form-bug.yaml --- .github/ISSUE_TEMPLATE/issue-form-bug.yaml | 33 ++++++---------------- 1 file changed, 8 insertions(+), 25 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/issue-form-bug.yaml b/.github/ISSUE_TEMPLATE/issue-form-bug.yaml index 78981c5..a052d08 100644 --- a/.github/ISSUE_TEMPLATE/issue-form-bug.yaml +++ b/.github/ISSUE_TEMPLATE/issue-form-bug.yaml @@ -3,7 +3,7 @@ description: File a bug report title: "[Bug]: " labels: [bug, triage] assignees: - - octocat + - Power-Maverick body: - type: markdown attributes: @@ -23,40 +23,23 @@ body: label: What happened? description: Also tell us, what did you expect to happen? placeholder: Tell us what you see! - value: "A bug happened!" validations: required: true - - type: dropdown + - type: input id: version attributes: - label: Version - description: What version of our software are you running? - options: - - 1.0.2 (Default) - - 1.0.3 (Edge) + label: What version of the tool are you using? + description: You can find it under `Tool Library` in XrmToolBox. validations: required: true - - type: dropdown - id: browsers + - type: input + id: xrmtoolbox attributes: - label: What browsers are you seeing the problem on? - multiple: true - options: - - Firefox - - Chrome - - Safari - - Microsoft Edge + label: What version of XrmToolBox are you running? + description: You can find it under `Help` > `About XrmToolBox` in XrmToolBox. - type: textarea id: logs attributes: label: Relevant log output description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. render: shell - - type: checkboxes - id: terms - attributes: - label: Code of Conduct - description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com) - options: - - label: I agree to follow this project's Code of Conduct - required: true From 831c96dafd2e57d76a3c91e9e15759c1b55b0b21 Mon Sep 17 00:00:00 2001 From: Danish Naglekar <36135520+Power-Maverick@users.noreply.github.com> Date: Tue, 29 Jun 2021 10:13:02 -0400 Subject: [PATCH 3/6] Delete bug_report.md --- .github/ISSUE_TEMPLATE/bug_report.md | 31 ---------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index de1f0c1..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: '' -assignees: Danz-maveRICK - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. New PCF or Edit PCF function? -2. Click on '....' -3. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Desktop (please complete the following information):** - - OS: [e.g. Win10] - - XrmToolbox Version - - PCF Custom Control Builder Version - -**Additional context** -Add any other context about the problem here. From 7159339d480c65d8526460667a5a49332e9ce93a Mon Sep 17 00:00:00 2001 From: Danish Naglekar <36135520+Power-Maverick@users.noreply.github.com> Date: Tue, 29 Jun 2021 10:29:40 -0400 Subject: [PATCH 4/6] Create issues-form-feature-request.yaml --- .../issues-form-feature-request.yaml | 47 +++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/issues-form-feature-request.yaml diff --git a/.github/ISSUE_TEMPLATE/issues-form-feature-request.yaml b/.github/ISSUE_TEMPLATE/issues-form-feature-request.yaml new file mode 100644 index 0000000..7c8f138 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issues-form-feature-request.yaml @@ -0,0 +1,47 @@ +name: Feature Request +description: Suggest an idea for this project +title: "[Feature]: " +labels: [enhancement, triage] +assignees: + - Power-Maverick +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to provide an enhancement idea for the tool! + - type: input + id: contact + attributes: + label: Contact Details + description: How can we get in touch with you if we need more info? + placeholder: ex. email@example.com + validations: + required: false + - type: dropdown + id: is-problem + attributes: + label: Is your feature request related to a problem? + options: + - Yes + - No + validations: + required: true + - type: textarea + id: problem + attributes: + label: Describe the problem? + validations: + required: false + - type: textarea + id: solution + attributes: + label: Provide a solution or an idea you would like to see in the tool? + description: Also if you can provide any alternatives you have considered that would be great! + validations: + required: false + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: shell From aac28cff266ef57bb7048783508ca9a3402d4d53 Mon Sep 17 00:00:00 2001 From: Danish Naglekar <36135520+Power-Maverick@users.noreply.github.com> Date: Tue, 29 Jun 2021 10:30:31 -0400 Subject: [PATCH 5/6] Update issues-form-feature-request.yaml --- .github/ISSUE_TEMPLATE/issues-form-feature-request.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/issues-form-feature-request.yaml b/.github/ISSUE_TEMPLATE/issues-form-feature-request.yaml index 7c8f138..bf49822 100644 --- a/.github/ISSUE_TEMPLATE/issues-form-feature-request.yaml +++ b/.github/ISSUE_TEMPLATE/issues-form-feature-request.yaml @@ -22,8 +22,8 @@ body: attributes: label: Is your feature request related to a problem? options: - - Yes - - No + - 'Yes' + - 'No' validations: required: true - type: textarea From f5ed5a43b0eab9f6c1226ea5db9bbe561c6da6cd Mon Sep 17 00:00:00 2001 From: Danish Naglekar <36135520+Power-Maverick@users.noreply.github.com> Date: Tue, 29 Jun 2021 10:31:06 -0400 Subject: [PATCH 6/6] Delete feature_request.md --- .github/ISSUE_TEMPLATE/feature_request.md | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index bbcbbe7..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: '' -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here.