-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add issue template and pull request template
- Loading branch information
1 parent
407a04f
commit f3b07f3
Showing
6 changed files
with
98 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
To submit a new issue, please, use one of the following templates: | ||
|
||
https://github.com/input-output-hk/atala-prism-building-blocks/issues/new/choose | ||
|
||
Thank you! |
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,37 @@ | ||
name: Bug Report | ||
description: Report a bug in the Atala PRISM Swift SDK | ||
|
||
body: | ||
- type: dropdown | ||
id: is-regression | ||
attributes: | ||
label: Is this a regression? | ||
options: | ||
- 'Yes' | ||
- 'No' | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: exception-or-error | ||
attributes: | ||
label: Please provide the exception or error you saw | ||
render: true | ||
|
||
- type: textarea | ||
id: environment | ||
attributes: | ||
label: Please provide the environment you discovered this bug in | ||
render: true | ||
|
||
- type: textarea | ||
id: other | ||
attributes: | ||
label: Anything else? |
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,22 @@ | ||
name: 'Feature Request' | ||
description: Suggest a new feature for Atala PRISM Swift SDK | ||
|
||
body: | ||
- type: textarea | ||
id: proposed-feature | ||
attributes: | ||
label: Proposed feature | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Feature description | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: other | ||
attributes: | ||
label: Anything else? |
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 @@ | ||
blank_issues_enabled: false |
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,28 @@ | ||
# Overview | ||
<!-- What this PR does, and why is needed, a useful description is expected, and relevant tickets should be mentioned --> | ||
|
||
Fixes ATL-xxxx | ||
|
||
## Checklist | ||
|
||
### My PR contains... | ||
* [ ] No code changes (changes to documentation, CI, metadata, etc.) | ||
* [ ] Bug fixes (non-breaking change which fixes an issue) | ||
* [ ] Improvements (misc. changes to existing features) | ||
* [ ] Features (non-breaking change which adds functionality) | ||
|
||
### My changes... | ||
* [ ] are breaking changes | ||
* [ ] are not breaking changes | ||
* [ ] If yes to above: I have updated the documentation accordingly | ||
|
||
### Documentation | ||
* [ ] My changes do not require a change to the project documentation | ||
* [ ] My changes require a change to the project documentation | ||
* [ ] If yes to above: I have updated the documentation accordingly | ||
|
||
### Tests | ||
* [ ] My changes can not or do not need to be tested | ||
* [ ] My changes can and should be tested by unit and/or integration tests | ||
* [ ] If yes to above: I have added tests to cover my changes | ||
* [ ] If yes to above: I have taken care to cover edge cases in my tests |
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