Skip to content

fix: 修复导入集群分发任务是rabbitmq异常导致集群一直处于初始化状态 #1311

fix: 修复导入集群分发任务是rabbitmq异常导致集群一直处于初始化状态

fix: 修复导入集群分发任务是rabbitmq异常导致集群一直处于初始化状态 #1311

Workflow file for this run

name: pr-lint
on: [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: 添加新功能'.\
You can refer to this address for details:\
https://github.com/TencentBlueKing/bk-bcs/blob/master/docs/specification/commit-spec.md"
exit 1
fi