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: