Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 536 Bytes

File metadata and controls

24 lines (18 loc) · 536 Bytes

Conventional changelog lint action

This action validates all of the commit messages in a pull request

Inputs

token

Required A newline separated file of the commit messages to check.

Example usage

name: Lint pull request commits
on: pull_request
jobs:
    commit_lint:
        runs-on: ubuntu-16.04
        steps:
            - name: Lint PR commit messages
              uses: skywire/actions-conventional-changelog-lint@2.0.3
              with:
                  token: ${{ secrets.GITHUB_TOKEN }}