Skip to content

Commit 72b3f07

Browse files
committed
chore(ci): 临时禁用路径过滤和条件检查以进行测试
- 临时注释掉 backend-ci.yml 中的 paths 过滤器 - 临时注释掉 frontend-ci.yml 中的 paths 过滤器 - 临时注释掉前端 lint 检查的条件判断 - 临时注释掉前端构建检查的条件判断 - 临时注释掉管理员端 lint 检查的条件判断 - 临时注释掉管理员端构建检查的条件判断 - 添加临时禁用说明注释
1 parent 3a70589 commit 72b3f07

2 files changed

Lines changed: 20 additions & 14 deletions

File tree

.github/workflows/backend-ci.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
name: Backend CI
22

33
# Trigger: PR to main/develop branches, only when backend files change
4+
# 🚧 TEMPORARY: paths filter disabled for testing
45
on:
56
pull_request:
67
branches:
78
- main
89
- develop
9-
paths:
10-
- 'himarket-dal/**'
11-
- 'himarket-server/**'
12-
- 'himarket-bootstrap/**'
13-
- 'pom.xml'
14-
- '.github/workflows/backend-ci.yml'
10+
# paths:
11+
# - 'himarket-dal/**'
12+
# - 'himarket-server/**'
13+
# - 'himarket-bootstrap/**'
14+
# - 'pom.xml'
15+
# - '.github/workflows/backend-ci.yml'
1516

1617
# Avoid duplicate runs: new commits to the same PR will cancel previous runs
1718
concurrency:

.github/workflows/frontend-ci.yml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
name: Frontend CI
22

33
# Trigger: PR to main/develop branches, only when frontend files change
4+
# 🚧 TEMPORARY: paths filter disabled for testing
45
on:
56
pull_request:
67
branches:
78
- main
89
- develop
9-
paths:
10-
- 'himarket-web/himarket-frontend/**'
11-
- 'himarket-web/himarket-admin/**'
12-
- '.github/workflows/frontend-ci.yml'
10+
# paths:
11+
# - 'himarket-web/himarket-frontend/**'
12+
# - 'himarket-web/himarket-admin/**'
13+
# - '.github/workflows/frontend-ci.yml'
1314

1415
# Avoid duplicate runs: new commits to the same PR will cancel previous runs
1516
concurrency:
@@ -51,7 +52,8 @@ jobs:
5152
name: Frontend - Lint Check
5253
runs-on: ubuntu-latest
5354
needs: changes
54-
if: needs.changes.outputs.frontend == 'true'
55+
# 🚧 TEMPORARY: condition disabled for testing
56+
# if: needs.changes.outputs.frontend == 'true'
5557

5658
defaults:
5759
run:
@@ -108,7 +110,8 @@ jobs:
108110
name: Frontend - Build Check
109111
runs-on: ubuntu-latest
110112
needs: [changes, himarket-frontend-lint]
111-
if: needs.changes.outputs.frontend == 'true'
113+
# 🚧 TEMPORARY: condition disabled for testing
114+
# if: needs.changes.outputs.frontend == 'true'
112115

113116
defaults:
114117
run:
@@ -160,7 +163,8 @@ jobs:
160163
name: Admin - Lint Check
161164
runs-on: ubuntu-latest
162165
needs: changes
163-
if: needs.changes.outputs.admin == 'true'
166+
# 🚧 TEMPORARY: condition disabled for testing
167+
# if: needs.changes.outputs.admin == 'true'
164168

165169
defaults:
166170
run:
@@ -212,7 +216,8 @@ jobs:
212216
name: Admin - Build Check
213217
runs-on: ubuntu-latest
214218
needs: [changes, himarket-admin-lint]
215-
if: needs.changes.outputs.admin == 'true'
219+
# 🚧 TEMPORARY: condition disabled for testing
220+
# if: needs.changes.outputs.admin == 'true'
216221

217222
defaults:
218223
run:

0 commit comments

Comments
 (0)