mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
13 lines
234 B
YAML
13 lines
234 B
YAML
|
name: Lint Commit Messages
|
||
|
on: [pull_request, push]
|
||
|
|
||
|
jobs:
|
||
|
commitlint:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
- uses: wagoid/commitlint-github-action@v4
|
||
|
|