-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from bdiptesh/testing
v0.4.1_testing_stable
- Loading branch information
Showing
92 changed files
with
48,729 additions
and
207 deletions.
There are no files selected for viewing
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
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,70 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "[Bug]: " | ||
labels: ["1: bug", "2: tests"] | ||
assignees: | ||
- octocat | ||
body: | ||
- type: input | ||
id: contact | ||
attributes: | ||
label: Contact Details | ||
description: How can we get in touch with you if we need more information? | ||
placeholder: ex. [email protected] | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: Describe the bug | ||
placeholder: A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: bug-reproduce | ||
attributes: | ||
label: How can we reproduce the bug | ||
placeholder: | | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected behavior | ||
placeholder: A clear and concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: version | ||
attributes: | ||
label: Version | ||
description: What version of our product are you running? | ||
options: | ||
- v0.4.1 (Default) | ||
- v0.4.0 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output/screenshots | ||
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. | ||
render: shell | ||
|
||
- type: textarea | ||
id: add-context | ||
attributes: | ||
label: Additional context | ||
placeholder: Add any other context about the bug report here. | ||
validations: | ||
required: 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,36 @@ | ||
name: EDA request | ||
description: Request an EDA request | ||
title: "[EDA]: " | ||
labels: ["1: eda"] | ||
assignees: | ||
- octocat | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the EDA request | ||
placeholder: A clear and concise description of the request. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected outcomes(s) | ||
placeholder: Describe expected analyses/outcomes. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: add-context | ||
attributes: | ||
label: Additional context | ||
placeholder: Add any other context or screenshots about the EDA request here. | ||
validations: | ||
required: false | ||
|
||
- type: markdown | ||
attributes: | ||
value: | | ||
### NOTE: EDA branch(es) if at all created should not be merged into production/perennial branches i.e. (stable/testing/master) |
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,74 @@ | ||
name: Feature request | ||
description: Request a feature addition | ||
title: "[Feature]: " | ||
labels: ["1: feature", "2: tests"] | ||
assignees: | ||
- octocat | ||
body: | ||
- type: textarea | ||
id: problem-statement | ||
attributes: | ||
label: Is your feature request related to a problem? Please describe. | ||
placeholder: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Describe the solution you'd like | ||
placeholder: A clear and concise description of what you want to happen. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: input | ||
attributes: | ||
label: Expected input(s) | ||
placeholder: | | ||
input_01: int | ||
input_02: List[Union[int, float]] | ||
render: python | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: output | ||
attributes: | ||
label: Expected output(s) | ||
placeholder: | | ||
output_01: Dict[str, int] | ||
output_02: List[Union[int, float]] | ||
render: python | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: add-context | ||
attributes: | ||
label: Additional context | ||
placeholder: Add any other context or screenshots about the feature request here. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: accept | ||
attributes: | ||
label: Acceptance criteria | ||
placeholder: | | ||
NOTE: Acceptance criteria should be measurable and should be based on maximum possible limit. | ||
Example: If the acceptance criteria for an application is based on response time, specify the response time such that post which the application will not be adopted/used at all i.e. a deal breaker. Meaning if the acceptance criteria for response time is 1 minute, the end user will NOT use the application at all if the response time is more than 1 minute. | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: version | ||
attributes: | ||
label: Version | ||
description: What version of our product are you running? | ||
options: | ||
- v0.4.1 (Default) | ||
- v0.4.0 | ||
validations: | ||
required: true |
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,41 @@ | ||
name: Maintenance request | ||
description: Describe the technical debt or runtime updates | ||
title: "[Maintenance]: " | ||
labels: ["1: maintenance"] | ||
assignees: | ||
- octocat | ||
body: | ||
- type: textarea | ||
id: describe | ||
attributes: | ||
label: Describe the maintenance request | ||
placeholder: A clear and concise description of the request. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: impact | ||
attributes: | ||
label: Current impact | ||
placeholder: Quantify the impact of not completing the request. | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: version | ||
attributes: | ||
label: Version | ||
description: What version of our product are you running? | ||
options: | ||
- v0.4.1 (Default) | ||
- v0.4.0 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: add-context | ||
attributes: | ||
label: Additional context | ||
placeholder: Add any other context or screenshots about the maintenance request here. | ||
validations: | ||
required: false |
Oops, something went wrong.