Skip to content

Commit

Permalink
chore: Add conventional commits check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vfusco committed Nov 13, 2023
1 parent f0c550f commit 8bbb317
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/commits.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Conventional commit check

on: [push]

jobs:
commit_messages:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Conventional commit check
uses: cocogitto/cocogitto-action@v3
with:
check-latest-tag-only: true

0 comments on commit 8bbb317

Please sign in to comment.