terraform-openstack-landing.../.gitea/workflows/development.yml
Bertrand Lanson 78ca31f154
Some checks failed
development / Check commit compliance (push) Successful in 27s
pull-requests-open / Check commit compliance (pull_request) Failing after 34s
feat: add versioning requirements, and automatic documentation pipeline
2024-09-08 13:16:37 +02:00

27 lines
603 B
YAML

---
name: development
on:
push:
branches-ignore:
- main
jobs:
commit-check:
name: Check commit compliance
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install commitizen
run: pip3 install commitizen
shell: bash
working-directory: ./
- name: Verify commit message compliance
run: |
echo "cz check --message '${{ github.event.head_commit.message }}'"
cz check --message "${{ github.event.head_commit.message }}"
shell: bash
working-directory: ./