2019-03-13 04:14:30 -07:00
|
|
|
name: Validate Commits
|
|
|
|
|
|
|
|
on: [pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
commitlint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- uses: wagoid/commitlint-github-action@v2
|
2020-10-18 23:54:59 -07:00
|
|
|
with:
|
|
|
|
configFile: './.commitlintrc.yml'
|