Skip to content

docs: 更新规范文档/新增github action规范PR格式 #1

docs: 更新规范文档/新增github action规范PR格式

docs: 更新规范文档/新增github action规范PR格式 #1

Workflow file for this run

name: pr-lint
on: [push, pull_request]
jobs:
PR-format-check:
runs-on: ubuntu-latest
steps:
- name: Check PR naming convention
run: |
title="${{ github.event.pull_request.title }}"
pattern="^(feat|fix|docs|style|refactor|perf|test|chore|revert|build|ci): .*"
if [[ ! $title =~ $pattern ]]; then
echo "PR title does not match naming convention. Example: 'feat: 添加新功能'"
exit 1
fi