Description
- Added verbose option on cli.
- Added verbose option on github actions.
- Updated doc for verbose and quiet.
Related Issue
Fixes #16
Type of Change
Please mark the appropriate option below to describe the type of change your pull request introduces:
Checklist
Additional Notes
Here are some output of verbose:
For a single commit message
starting commitlint
checking commit from hash
fetching commit message from hash a2dfbec
executing: git show --format=%B -s a2dfbec
This is an invalid message
linting commit message:
----------
This is an invalid message
----------
removing comments from the commit message
checking if the commit message is in ignored list
running detailed validators for linting
running validator HeaderLengthValidator
running validator PatternValidator
PatternValidator: validation failed
⧗ Input:
This is an invalid message
✖ Found 1 error(s).
- Commit message does not follow the Conventional Commits format.
For Multiple commit message
$ commitlint --from-hash 840b680 --verbose
starting commitlint
checking commit from hash range
fetching commit messages from hash range, from: 840b680, to: HEAD
fetching commit message from hash 840b680
executing: git show --format=%B -s 840b680
docs: add Conventional commit message info in README
executing: git log --format=%B========commit-delimiter======== --reverse 840b680..HEAD
Merge pull request #35 from aj3sh/conventional-commit-doc
docs: add Conventional commit message info in README========commit-delimiter========
ci: update release-please for release automation
- Added bot for creating Release PR
- Updated version information in __version__.py file
- Added pypi publish steps in the actions
========commit-delimiter========
Merge pull request #36 from aj3sh/release-please
ci: update release-please for release automation========commit-delimiter========
feat(cli): added the quiet option in cli
========commit-delimiter========
Merge pull request #37 from golesuman/feat/quiet-option-in-cli
========commit-delimiter========
test: refactor tests for system exit
========commit-delimiter========
feat: add verbose option
- Added verbose option on cli.
- Added verbose option on github actions.
- Updated doc for verbose and quiet.
========commit-delimiter========
This is an invalid message
========commit-delimiter========
feat: add verbose option
- Added verbose option on cli.
- Added verbose option on github actions.
- Updated doc for verbose and quiet.
========commit-delimiter========
Merge branch 'verbose' into test
========commit-delimiter========
linting commit message:
----------
docs: add Conventional commit message info in README
----------
removing comments from the commit message
checking if the commit message is in ignored list
running detailed validators for linting
running validator HeaderLengthValidator
running validator PatternValidator
lint success
linting commit message:
----------
Merge pull request #35 from aj3sh/conventional-commit-doc
docs: add Conventional commit message info in README
----------
removing comments from the commit message
checking if the commit message is in ignored list
commit message ignored, skipping lint
lint success
linting commit message:
----------
ci: update release-please for release automation
- Added bot for creating Release PR
- Updated version information in __version__.py file
- Added pypi publish steps in the actions
----------
removing comments from the commit message
checking if the commit message is in ignored list
running detailed validators for linting
running validator HeaderLengthValidator
running validator PatternValidator
lint success
linting commit message:
----------
Merge pull request #36 from aj3sh/release-please
ci: update release-please for release automation
----------
removing comments from the commit message
checking if the commit message is in ignored list
commit message ignored, skipping lint
lint success
linting commit message:
----------
feat(cli): added the quiet option in cli
----------
removing comments from the commit message
checking if the commit message is in ignored list
running detailed validators for linting
running validator HeaderLengthValidator
running validator PatternValidator
lint success
linting commit message:
----------
Merge pull request #37 from golesuman/feat/quiet-option-in-cli
----------
removing comments from the commit message
checking if the commit message is in ignored list
commit message ignored, skipping lint
lint success
linting commit message:
----------
test: refactor tests for system exit
----------
removing comments from the commit message
checking if the commit message is in ignored list
running detailed validators for linting
running validator HeaderLengthValidator
running validator PatternValidator
lint success
linting commit message:
----------
feat: add verbose option
- Added verbose option on cli.
- Added verbose option on github actions.
- Updated doc for verbose and quiet.
----------
removing comments from the commit message
checking if the commit message is in ignored list
running detailed validators for linting
running validator HeaderLengthValidator
running validator PatternValidator
lint success
linting commit message:
----------
This is an invalid message
----------
removing comments from the commit message
checking if the commit message is in ignored list
running detailed validators for linting
running validator HeaderLengthValidator
running validator PatternValidator
PatternValidator: validation failed
⧗ Input:
This is an invalid message
✖ Found 1 error(s).
- Commit message does not follow the Conventional Commits format.
linting commit message:
----------
feat: add verbose option
- Added verbose option on cli.
- Added verbose option on github actions.
- Updated doc for verbose and quiet.
----------
removing comments from the commit message
checking if the commit message is in ignored list
running detailed validators for linting
running validator HeaderLengthValidator
running validator PatternValidator
lint success
By submitting this pull request, I confirm that I have read and complied with the contribution guidelines of this project.
Description
Related Issue
Fixes #16
Type of Change
Please mark the appropriate option below to describe the type of change your pull request introduces:
Checklist
Examples:
"fix: Fixed foobar bug","feat(accounts): Added foobar feature".README.md.Additional Notes
Here are some output of verbose:
For a single commit message
For Multiple commit message
By submitting this pull request, I confirm that I have read and complied with the contribution guidelines of this project.