Skip to content

Commit

Permalink
ci: Add commit validation check.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanplevesque committed Nov 21, 2023
1 parent 41e192d commit 79850c2
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/conventional-commits.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Conventional Commits

on: [pull_request]

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
validate-commits:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Commitsar check
uses: docker://aevea/commitsar

0 comments on commit 79850c2

Please sign in to comment.