Skip to content

🔎 Checking conventional commit on 911bdc98669e52f45e0ddf695655119f70a5ab7c #3

🔎 Checking conventional commit on 911bdc98669e52f45e0ddf695655119f70a5ab7c

🔎 Checking conventional commit on 911bdc98669e52f45e0ddf695655119f70a5ab7c #3

name: 🔎 Conventional Commit Checks
run-name: 🔎 Checking conventional commit on ${{ github.sha }}
on:
push:
branches:
- '**'
- '!main'
jobs:
conventional-commit-check:
runs-on: ubuntu-latest
name: Conventional Commit Check
steps:
# check out repository
- name: Check out repository
uses: actions/checkout@v4
with:
ref: ${{ github.sha }}
fetch-depth: 0
# install cargo
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
# install convco
- name: Install convco
run: cargo install cocogitto --locked
# check for conventional commits
- name: Check for conventional commits
run: scripts/devops/conv-commit-check