Browse Source

feat(ci): Lint conventional commits

pull/468/head
jld3103 1 year ago
parent
commit
18ac3fa53c
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
  1. 22
      .github/workflows/conventional_commits.yaml

22
.github/workflows/conventional_commits.yaml

@ -0,0 +1,22 @@
name: Conventional commits
on:
pull_request:
jobs:
conventional-commits:
name: Conventional commits
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
- name: Install dart
uses: dart-lang/setup-dart@v1
- name: Install commitlint_cli
run: dart pub get
- name: Lint conventional commits
run: dart run commitlint_cli --from="origin/${{ github.base_ref }}" --to="${{ github.head_ref }}"
Loading…
Cancel
Save