31 lines
652 B
YAML
31 lines
652 B
YAML
name: Commit Lint
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, edited]
|
|
push:
|
|
branches:
|
|
- develop
|
|
- master
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
|
|
jobs:
|
|
commitlint:
|
|
name: Lint commit messages
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Run commitlint
|
|
uses: wagoid/commitlint-github-action@v6
|
|
with:
|
|
configFile: .commitlintrc.json
|
|
failOnWarnings: false
|
|
helpURL: https://github.com/JefferyHcool/BiliNote/blob/develop/CONTRIBUTING.md#5-提交规范
|