Merge PR #122
Deploy / ci (push) Failing after 14s
Deploy / deploy (push) Has been skipped
Deploy / notify-deploy-failure (push) Successful in 2s
Deploy / notify-deploy-success (push) Successful in 2s

This commit was merged in pull request #122.
This commit is contained in:
2026-06-22 23:00:51 +00:00
2 changed files with 14 additions and 0 deletions
+7
View File
@@ -2,6 +2,7 @@
#
# 触发条件:
# - pull_requestopened, synchronize
# - 仅代码改动触发,纯文档改动跳过(paths-ignore
#
# 注意:只保留 pull_request 触发,避免 push + pull_request 双倍触发
#
@@ -16,6 +17,12 @@ name: CI
on:
pull_request:
types: [opened, synchronize]
paths-ignore:
- 'docs/**'
- 'mockups/**'
- 'prompt_templates/**'
- '*.md'
- 'README.md'
jobs:
# ── Job 1: Lint ──────────────────────────────────────
+7
View File
@@ -2,6 +2,7 @@
#
# 触发条件:
# - push 到 main 分支
# - 仅代码改动触发部署,纯文档改动跳过(paths-ignore
#
# Gitea v1.23.4 限制注意:
# - 不支持 failure() 表达式
@@ -13,6 +14,12 @@ name: Deploy
on:
push:
branches: [main]
paths-ignore:
- 'docs/**'
- 'mockups/**'
- 'prompt_templates/**'
- '*.md'
- 'README.md'
jobs:
# ── Job 1: CI(main 分支跑完整测试)─────────────────