Skip to content

Releases: qualcomm/commit-msg-check-action

v2.0.0 - Deprecate use of github token and API

23 Mar 09:36
d0aa461

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.0.0...v2.0.0

v1.0.0 – Initial Stable Release

08 Dec 10:35
06c5cbd

Choose a tag to compare

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.