Skip to content

Commit

Permalink
feat(ci): add conventional commits
Browse files Browse the repository at this point in the history
This commit adds a check to CI that ensures that commits adhere to
Conventional Commits (https://www.conventionalcommits.org)
t3hmrman committed Jan 29, 2024
1 parent a1f5e8b commit 7ff6cee
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Lint

on:
pull_request:

jobs:
ensure-conventional-commits:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Ensure conventional commits
uses: aevea/commitsar@916c7b483225a30d3a17f407fa25f5b25888ea69 # v0.20.2

0 comments on commit 7ff6cee

Please sign in to comment.