-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Add conventional commits check workflow
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | ||
name: Conventional Commits Check | ||
on: [push] | ||
jobs: | ||
commit_messages: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install cocogitto tool | ||
run: | | ||
VERSION=5.6.0 | ||
TAR=cocogitto-${VERSION}-x86_64-unknown-linux-musl.tar.gz | ||
curl --output-dir /tmp -OL https://github.com/cocogitto/cocogitto/releases/download/${VERSION}/${TAR} | ||
sudo tar -xzf /tmp/${TAR} -C /usr/local/bin | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Conventional commit check | ||
run: | | ||
# Fetch all history to ensure we have the full context | ||
git fetch --prune --unshallow | ||
# Assuming 'main' is the default base branch | ||
BASE_BRANCH=${{ github.base_ref || 'main' }} | ||
CURRENT_BRANCH=$(git branch --show-current) | ||
cog check ${BASE_BRANCH}..${CURRENT_BRANCH} |