chore: remove unnecessary console logs #44
Workflow file for this run
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: Git Lint | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
validate-commits: | |
name: Validate Commit Messages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install Gitlint | |
run: pip install gitlint==0.19.1 | |
- name: Lint PR Commit Messages | |
if: github.event_name == 'pull_request' | |
run: gitlint --commits "${{ github.event.pull_request.base.sha }}..HEAD" |