-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1ce9819
commit 091a473
Showing
5 changed files
with
62 additions
and
1 deletion.
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
File renamed without changes.
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,25 @@ | ||
--- | ||
name: Bug | ||
about: Software defect. | ||
labels: [ bug ] | ||
--- | ||
|
||
**REPLACE WITH BUG DETAILS** (Check below for guidelines) | ||
|
||
--- | ||
|
||
Describe the steps and expected results: | ||
|
||
``` | ||
Given *a condition* | ||
And *another condition* | ||
When *an action is taken* | ||
And *other after the first* | ||
Then *something happened* | ||
And I expected *this other thing* | ||
``` | ||
|
||
If it is possible, please include: | ||
* The code that produced the error (or a link to it) | ||
* Stack trace of the error and/or logs if available | ||
* Details on the environment the fail happened (i.e.: the OS) |
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,21 @@ | ||
--- | ||
name: Enhancement | ||
about: New feature or improvement. | ||
labels: [ enhancement ] | ||
--- | ||
|
||
**REPLACE WITH ENHANCEMENT DETAILS** (Check below for guidelines) | ||
|
||
--- | ||
|
||
Detailed description. | ||
|
||
Reason for the change or new development. | ||
|
||
Acceptance criteria to verify the development. A list of requirements with the following format: | ||
|
||
`When *action* then *result*` | ||
|
||
For example: | ||
|
||
`When this is done then that other thing should happen` |
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 @@ | ||
|
||
**REPLACE WITH PR DESCRIPTION** (It is also editable after PR creation) | ||
|
||
--- | ||
|
||
For the Pull Request to be accepted please check: | ||
|
||
- [ ] The PR has a meaningful title. | ||
- [ ] If the PR refers to an issue, it should be referenced with the GitHub format (*#ID*). | ||
- [ ] The PR is done to the `develop` branch (new features) or the `master` branch (releases). | ||
- [ ] The code pass all PR checks. | ||
- [ ] All public members are documented. | ||
- [ ] The code follow the coding conventions stated at the [contributing.md] file. | ||
|
||
[contributing.md]: https://github.com/jaguililla/hexagonal_spring/blob/main/CONTRIBUTING.md |