You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For both regex and plain string comparison, the commit messages are being downcased. This means that when overriding the major and minor identifiers, one cannot use uppercase identifiers, such as MAJOR and MINOR.
As far as I can tell, this is not documented behavior.
The text was updated successfully, but these errors were encountered:
github-actionsbot
changed the title
Commit messages being downcased before comparison
[TS-580] Commit messages being downcased before comparison
Sep 13, 2023
If anyone else would run into this issue you can let your regex ignore casing with something like this. In my case i want it to start with Minor: or MAJOR: with any casing but you can modify according to your purpose.
- name: Git Version
id: version
uses: codacy/[email protected]
with:
release-branch: main
minor-identifier: /(?i)^minor:/
major-identifier: /(?i)^major:/
For both regex and plain string comparison, the commit messages are being downcased. This means that when overriding the major and minor identifiers, one cannot use uppercase identifiers, such as MAJOR and MINOR.
As far as I can tell, this is not documented behavior.
The text was updated successfully, but these errors were encountered: