28 lines
499 B
YAML
28 lines
499 B
YAML
name: PR title check
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, edited, synchronize, reopened]
|
|
|
|
permissions:
|
|
pull-requests: read
|
|
|
|
jobs:
|
|
pr-title-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: amannn/action-semantic-pull-request@v5
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
types: |
|
|
feat
|
|
fix
|
|
docs
|
|
refactor
|
|
chore
|
|
test
|
|
perf
|
|
ci
|
|
build
|