-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Features Adds: - CLI Command "modelbuilder" added - Removed the CLI Commands from the preview feature - Added enhanced error logs and reporting Bug Fixed: - Resolves #89 - Resolves #88 - Resolves #86 - Resolves #85
- Loading branch information
Showing
16 changed files
with
352 additions
and
188 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Each line is a file pattern followed by one or more owners. | ||
|
||
/src @power-maverick @BenediktBergmann @mohsinonxrm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,43 +3,39 @@ description: File a bug report | |
title: "[Bug]: " | ||
labels: [bug, triage] | ||
assignees: | ||
- Power-Maverick | ||
- Power-Maverick | ||
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. Twitter handle or LinkedIn profile, [email protected] | ||
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! | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: What version of the tool are you using? | ||
description: You can find it under `Extension` in VSCode. | ||
validations: | ||
required: true | ||
- type: input | ||
id: vscode | ||
attributes: | ||
label: What version of Visual Studio Code are you running? | ||
description: You can find it under `Help` > `About` in VSCode. | ||
- 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: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- 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! | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: What version of the tool are you using? | ||
description: You can find it under `Extension` in VSCode. | ||
validations: | ||
required: true | ||
- type: input | ||
id: vscode | ||
attributes: | ||
label: What version of Visual Studio Code are you running? | ||
description: You can find it under `Help` > `About` in VSCode. | ||
- type: input | ||
id: sessionid | ||
attributes: | ||
label: Any relevant session id from VSCode? | ||
- 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,45 +3,37 @@ description: Suggest an idea for this project | |
title: "[Feature]: " | ||
labels: [enhancement, triage] | ||
assignees: | ||
- Power-Maverick | ||
- 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. Twitter handle, LinkedIn profile, [email protected] | ||
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 | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to provide an enhancement idea for the tool! | ||
- 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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
reviewers: | ||
# The default reviewers | ||
defaults: | ||
- repository-owners | ||
|
||
# Reviewer groups each of which has a list of GitHub usernames | ||
groups: | ||
repository-owners: | ||
- power-maverick | ||
- BenediktBergmann | ||
- mohsinonxrm | ||
|
||
options: | ||
ignore_draft: true | ||
ignored_keywords: | ||
- DO NOT REVIEW | ||
enable_group_assignment: false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: 'Add Reviewer' | ||
on: | ||
pull_request: | ||
types: [opened, ready_for_review, reopened] | ||
|
||
jobs: | ||
auto-request-review: | ||
name: Auto Request Review | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Request reviewers | ||
uses: necojackarc/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
config: .github/reviewers.yml # Config file location override |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.