🐛 fix(ci): restore workflow-run commit verification

This commit is contained in:
csh
2026-08-24 14:48:19 +08:00
parent fd653ff49d
commit d1568c02cd
4 changed files with 90 additions and 97 deletions
+6 -4
View File
@@ -34,13 +34,15 @@ python test/integration/check_doc_links.py
## 🧭 CI 自动化测试
测试套件通过 Gitea Actions 自动运行(见 `.gitea/workflows/checks.yml` `tests` job):
测试套件通过 Gitea Actions 自动运行(见 `.gitea/workflows/checks.yml`
`🔎 规范检查 + 全量测试` job):
- **触发方式**`workflow_run`——「🧰 准备环境」(`prepare.yml`)完成后触发。
Prepare 监听 `push:main``pull_request``workflow_dispatch` 与每日 `schedule`
故推送到 main、对 main 开 PR 或手动运行 Prepare 都会经 Prepare 传导到测试。
Prepare 监听 `push:main``pull_request``workflow_dispatch`;推送到 main、
对 main 开 PR 或手动运行 Prepare 都会经 Prepare 传导到测试。每日 `schedule`
只属于 thirdparty updater,不会触发这套提交验证。
- **运行平台**standard-ubuntu-22
- **注**`checks.yml` 同时包含 commit message 规范校验(`standards` job
- **注**同一 job 先校验 commit message,再运行全量测试
## 📚 测试详解