-
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.
- Loading branch information
Showing
1 changed file
with
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
- name: Check | ||
uses: stordco/[email protected] | ||
with: | ||
regex: '^(feat!|fix!|fix|feat|chore)(\(\w+\))?:\s(\[#\d{1,5}\])?.*$' | ||
regex: '^(refactor!|feat!|fix!|refactor|fix|feat|chore)(\(\w+\))?:\s(\[#\d{1,5}\])?.*$' | ||
hint: | | ||
Your PR title does not match the Conventional Commits convention. Please rename your PR to match one of the following formats: | ||
|
@@ -32,4 +32,12 @@ jobs: | |
Note: Adding ! (i.e. `feat!:`) represents a breaking change and will result in a SemVer major release. | ||
Please use one of the following types: | ||
- **feat:** A new feature, resulting in a MINOR version bump." | ||
- **fix:** A bug fix, resulting in a PATCH version bump." | ||
- **refactor:** A code change that neither fixes a bug nor adds a feature, resulting in a PATCH version bump." | ||
- **chore:** Changes unrelated to the release code, resulting in no version bump." | ||
- **revert:** Reverts a previous commit." | ||
See https://www.conventionalcommits.org/en/v1.0.0/ for more information. |