ci(foundation): 所有job改用saas专用标签,隔离actions测试任务
CI/CD Pipeline / Build & Push Staging (Watchtower auto-deploy) (push) Has been skipped
CI/CD Pipeline / Staging E2E Tests (push) Has been skipped
CI/CD Pipeline / Build Production Runtime Images (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Frontend Lint (push) Failing after 16h6m36s
CI/CD Pipeline / Validate Code Quality And Tests (push) Failing after 16h6m36s

- 所有7个CI job从ubuntu-22.04改为saas标签
- auto-merge从ubuntu-latest改为saas标签
- runner只保留saas和runtime-builder标签
- 彻底隔离第三方actions的测试任务,保障业务流水线资源
This commit is contained in:
lingying
2026-07-08 20:47:50 +08:00
parent 92c71fa57b
commit 6eac36beef
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ on:
jobs:
auto-merge:
runs-on: ubuntu-latest
runs-on: saas
timeout-minutes: 10
steps:
- name: Checkout code
+2 -2
View File
@@ -22,7 +22,7 @@ permissions:
jobs:
validate:
name: Validate Code Quality And Tests
runs-on: ubuntu-22.04
runs-on: saas
timeout-minutes: 10
env:
@@ -198,7 +198,7 @@ jobs:
frontend-lint:
name: Frontend Lint
runs-on: ubuntu-22.04
runs-on: saas
timeout-minutes: 10
steps: