Skip to content

Commit

Permalink
.github: workflows: gitlint: Add gitlint
Browse files Browse the repository at this point in the history
Add gitlint to check each and every commit on a PR.

Signed-off-by: Yasushi SHOJI <yashi@spacecubics.com>
  • Loading branch information
yashi committed Dec 17, 2024
1 parent 0160509 commit ff2ba2e
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/gitlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: GitLint

on:
pull_request

jobs:
gitlint:
runs-on: ubuntu-latest
name: Run gitlint against all commits in a PR
steps:

- name: Install python dependencies
run: |
pip3 install gitlint
- name: Checkout the code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0

- name: Setup Git (pull request)
run: |
git checkout -b this_pr
- name: Run gitlint
if: ${{ github.base_ref }}
env:
BASE_REF: ${{ github.base_ref }}
run: |
gitlint --commits origin/${BASE_REF}..this_pr

0 comments on commit ff2ba2e

Please sign in to comment.