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 bb42af3
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/commits.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# 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
id: conventional_commit_check
uses: cocogitto/cocogitto-action@v3
with:
check-latest-tag-only: true

0 comments on commit bb42af3

Please sign in to comment.