mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-11-05 11:31:14 +00:00
ea7999e064
Implement commit message check workflow using gitlint Fixes: #5840 Signed-off-by: Ruslan Mstoi <ruslan.mstoi@intel.com>
27 lines
631 B
YAML
27 lines
631 B
YAML
name: Commit messages check
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
gitlint:
|
|
name: Check commit messages
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
fetch-depth: 0
|
|
- name: Set up Python 3.10
|
|
uses: actions/setup-python@v3
|
|
with:
|
|
python-version: "3.10"
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install --upgrade gitlint
|
|
- name: Lint git commit messages
|
|
run: |
|
|
gitlint --commits origin/$GITHUB_BASE_REF..
|