Merge pull request #1341 from luoliwoshang/fix-ci-duplicate-runs

ci: prevent duplicate workflow runs for xgopilot branches
This commit is contained in:
xushiwei
2025-10-15 06:30:59 +08:00
committed by GitHub
6 changed files with 9 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ on:
branches:
- "**"
- "!dependabot/**"
- "!xgopilot/**"
pull_request:
branches: ["**"]

View File

@@ -5,6 +5,7 @@ on:
branches:
- "**"
- "!dependabot/**"
- "!xgopilot/**"
pull_request:
branches: ["**"]

View File

@@ -8,6 +8,7 @@ on:
branches:
- "**"
- "!dependabot/**"
- "!xgopilot/**"
pull_request:
branches: ["**"]

View File

@@ -8,6 +8,7 @@ on:
branches:
- "**"
- "!dependabot/**"
- "!xgopilot/**"
pull_request:
branches: ["**"]

View File

@@ -2,7 +2,10 @@ name: Release Build
on:
push:
branches: ["**"]
branches:
- "**"
- "!dependabot/**"
- "!xgopilot/**"
tags: ["*"]
pull_request:
branches: ["**"]

View File

@@ -6,6 +6,7 @@ on:
branches:
- "**"
- "!dependabot/**"
- "!xgopilot/**"
pull_request:
branches: ["**"]