Compare commits

...

1 Commits

Author SHA1 Message Date
xiaoxia 0ed80575fe perf(ci): 扩展CI触发分支模式+增加手动触发入口
CI/CD Pipeline / Production Browser E2E (push) Failing after 1516h29m57s
CI/CD Pipeline / Deploy Production (push) Failing after 1516h29m58s
CI/CD Pipeline / Staging API Integration Tests (push) Failing after 1516h29m57s
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (push) Failing after 1516h29m58s
CI/CD Pipeline / Build Production Worker Image (push) Failing after 1516h29m58s
CI/CD Pipeline / Build Production API Image (push) Failing after 1516h29m58s
CI/CD Pipeline / Build Staging API Image (push) Failing after 1516h29m59s
CI/CD Pipeline / Build Staging Web Image (push) Failing after 1516h29m58s
CI/CD Pipeline / Production Browser E2E (pull_request) Failing after 1516h30m8s
CI/CD Pipeline / Staging API Integration Tests (pull_request) Failing after 1516h30m8s
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (pull_request) Failing after 1516h30m10s
CI/CD Pipeline / Staging E2E Tests (pull_request) Failing after 1516h30m8s
CI/CD Pipeline / Build Production Web Image (pull_request) Failing after 1516h30m12s
CI/CD Pipeline / Build Production API Image (pull_request) Failing after 1516h30m12s
CI/CD Pipeline / Build Staging Web Image (pull_request) Failing after 1516h30m12s
CI/CD Pipeline / Build Staging API Image (pull_request) Failing after 1516h30m12s
CI/CD Pipeline / Validate Code Quality And Tests (push) Has been skipped
CI/CD Pipeline / Unit Tests (push) Has been skipped
CI/CD Pipeline / Integration Tests (push) Has been skipped
CI/CD Pipeline / Frontend Lint (push) Has been skipped
CI/CD Pipeline / Staging E2E Tests (push) Failing after 1517h1m38s
CI/CD Pipeline / Build Production Web Image (push) Failing after 1517h1m39s
CI/CD Pipeline / Build Staging Worker Image (push) Failing after 1517h1m40s
CI/CD Pipeline / Validate Code Quality And Tests (pull_request) Has been skipped
CI/CD Pipeline / Unit Tests (pull_request) Has been skipped
CI/CD Pipeline / Integration Tests (pull_request) Has been skipped
CI/CD Pipeline / Frontend Lint (pull_request) Has been skipped
CI/CD Pipeline / Build Staging Worker Image (pull_request) Failing after 1517h1m53s
CI/CD Pipeline / Deploy Production (pull_request) Failing after 1517h1m51s
CI/CD Pipeline / Build Production Worker Image (pull_request) Failing after 1517h1m53s
2026-07-15 10:56:45 +08:00
+14 -1
View File
@@ -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: