Skip to content

Commit

Permalink
chore: add commit-lint.yml for commit linting
Browse files Browse the repository at this point in the history
  • Loading branch information
engineering87 authored Nov 24, 2024
1 parent 87f9a90 commit 874415d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/commit-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Commit Lint

on:
pull_request:
branches:
- main
- develop
push:
branches:
- main
- develop

jobs:
commit-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Run Commit Lint
uses: wagoid/commitlint-github-action@v5
with:
configFile: commitlint.config.js

0 comments on commit 874415d

Please sign in to comment.