mirror of
https://github.com/chainbase-labs/Agentkey.git
synced 2026-09-20 14:20:23 +08:00
21 lines
442 B
YAML
21 lines
442 B
YAML
name: Lint PR title
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, edited, reopened, synchronize]
|
|
|
|
permissions:
|
|
pull-requests: read
|
|
|
|
jobs:
|
|
commitlint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: wagoid/commitlint-github-action@v6
|
|
with:
|
|
configFile: .commitlintrc.json
|
|
firstParent: false
|
|
failOnWarnings: false
|
|
helpURL: https://www.conventionalcommits.org/
|