[DO NOT MERGE] feat(cli): add Markdown support for CLI #274
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Commit Message Lint | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
gitlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.ref }} | |
fetch-depth: 0 | |
- name: Install gitlint | |
shell: bash | |
run: | | |
python -m pip install gitlint | |
- name: Run gitlint | |
shell: bash | |
run: | | |
gitlint --commit ${{ github.event.pull_request.head.sha }} --debug |