Releases: qualcomm/commit-msg-check-action
v2.0.0 - Deprecate use of github token and API
What's Changed
- Update README.md with the latest release tag by @ynancher in #12
- Deprecate usage of github token by @ynancher in #17
- Bump black from 24.3.0 to 26.3.1 by @dependabot[bot] in #18
New Contributors
- @dependabot[bot] made their first contribution in #18
Full Changelog: v1.0.0...v2.0.0
v1.0.0 – Initial Stable Release
This release introduces the first stable version of Commit Message Check Action, designed to enforce commit message standards in pull requests.
Key features include:
✅ Configurable Commit Message Rules
body-char-limit: Maximum characters allowed in the commit body.
sub-char-limit: Maximum characters allowed in the subject line.
check-blank-line: Ensures a blank line between subject and body.
✅ Automatic Validation
Runs on pull_request events (opened, synchronize, reopened).
Provides clear feedback when commit messages do not meet guidelines.
✅ Easy Integration
Simply add the action to your workflow:
name: Commit Msg Check Action
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
check-commits:
runs-on: ubuntu-latest
steps:
- name: Run custom commit check
uses: qualcomm/commit-msg-check-action@v1.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
body-char-limit: 72
sub-char-limit: 50
check-blank-line: true
Why use this release?
Ensures consistent commit message formatting.
Improves readability and maintainability of your Git history.
Ready for production use with tested functionality.