From 0ed80575fe4d730cadf522d641f88f00eb51c78c Mon Sep 17 00:00:00 2001 From: xiaoxia Date: Wed, 15 Jul 2026 10:56:45 +0800 Subject: [PATCH] =?UTF-8?q?perf(ci):=20=E6=89=A9=E5=B1=95CI=E8=A7=A6?= =?UTF-8?q?=E5=8F=91=E5=88=86=E6=94=AF=E6=A8=A1=E5=BC=8F+=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E6=89=8B=E5=8A=A8=E8=A7=A6=E5=8F=91=E5=85=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci-cd.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci-cd.yml b/.gitea/workflows/ci-cd.yml index 049231d4e..b975e84cc 100755 --- a/.gitea/workflows/ci-cd.yml +++ b/.gitea/workflows/ci-cd.yml @@ -5,19 +5,32 @@ on: - main - develop - feature/** + - feat/** - bugfix/** + - fix/** - hotfix/** - release/** + - refactor/** + - perf/** + - docs/** + - chore/** + - ci/** tags: - v* pull_request: branches: - main - develop + workflow_dispatch: + inputs: + reason: + description: "触发原因" + required: false + default: "手动触发 - CI漏触发补跑" permissions: contents: read concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} cancel-in-progress: true jobs: validate: -- 2.54.0