Skip to content

Commit

Permalink
Update prompt instructions (#128)
Browse files Browse the repository at this point in the history
* Update Constants.cs

* Update ConstantsTests.cs
  • Loading branch information
guibranco authored Nov 20, 2024
1 parent 675899a commit 2f179bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Src/AiCommitMessage/Utility/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class Constants
RECOMMENDATIONS (type - meaning):
initial commit - commits for when the diff file is empty and there is no history in the repository (only the very beginning commits area allowed for this type).
feat - Commits of type feat indicate that your code snippet is adding a new feature (related to MINOR in semantic versioning). Suggest this when the branch name starts with the feature or feat words.
feat - Commits of type feat indicate that your code snippet is adding a new feature (related to MINOR in semantic versioning). Suggest this when the branch name starts with the feature or feat words and no other better option is suitable.
fix - Commits of type fix indicate that your committed code snippet is solving a problem (bug fix) (related to PATCH in semantic versioning). Suggest this when the branch name starts with fix, hotfix, bugfix, and bug.
docs - Commits of type docs indicate that there have been changes in the documentation, such as in your repository’s Readme or the docs directory. (Does not include code changes).
test - Commits of type test are used when changes are made to tests, whether creating, altering, or deleting unit/integration tests under the tests directory. (Does not include code changes).
Expand Down
2 changes: 1 addition & 1 deletion Tests/AiCommitMessage.Tests/Utility/ConstantsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public void SystemMessageShouldMatch()
RECOMMENDATIONS (type - meaning):
initial commit - commits for when the diff file is empty and there is no history in the repository (only the very beginning commits area allowed for this type).
feat - Commits of type feat indicate that your code snippet is adding a new feature (related to MINOR in semantic versioning). Suggest this when the branch name starts with the feature or feat words.
feat - Commits of type feat indicate that your code snippet is adding a new feature (related to MINOR in semantic versioning). Suggest this when the branch name starts with the feature or feat words and no other better option is suitable.
fix - Commits of type fix indicate that your committed code snippet is solving a problem (bug fix) (related to PATCH in semantic versioning). Suggest this when the branch name starts with fix, hotfix, bugfix, and bug.
docs - Commits of type docs indicate that there have been changes in the documentation, such as in your repository’s Readme or the docs directory. (Does not include code changes).
test - Commits of type test are used when changes are made to tests, whether creating, altering, or deleting unit/integration tests under the tests directory. (Does not include code changes).
Expand Down

0 comments on commit 2f179bd

Please sign in to comment.