terraform-openstack-securit.../.gitea/workflows/development.yml
Bertrand Lanson 23df367218
Some checks failed
build-deploy / Bump version and create changelog with commitizen (push) Has been cancelled
feat: add raw output for the security group objects
2024-10-03 19:22:05 +00:00

27 lines
643 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: ${{ gitea.workspace }}
- 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: ${{ gitea.workspace }}