Skip to content

Commit

Permalink
ci: add commitlint in pull requests to main
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelJCamara committed Jan 11, 2025
1 parent cc13675 commit 89e992b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Lint Commit Messages
on:
pull_request:
branches:
- main

permissions:
contents: read
pull-requests: read

jobs:
commitlint:
name: commitlint check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: wagoid/commitlint-github-action@v6

0 comments on commit 89e992b

Please sign in to comment.