Skip to content

Commit 5fc82be

Browse files
committed
fix: 修改CI触发条件以支持功能分支
1 parent b342ba6 commit 5fc82be

1 file changed

Lines changed: 12 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,19 @@ name: CI
22

33
on:
44
push:
5-
branches: [main, develop]
6-
paths-ignore:
7-
- 'docs/**'
8-
- '**.md'
5+
branches: [main, develop, feature/**]
6+
paths:
7+
- '**.py'
8+
- 'pyproject.toml'
9+
- 'uv.lock'
10+
- '.github/workflows/**'
911
pull_request:
10-
branches: [main, develop]
11-
paths-ignore:
12-
- 'docs/**'
13-
- '**.md'
12+
branches: [main, develop, feature/**]
13+
paths:
14+
- '**.py'
15+
- 'pyproject.toml'
16+
- 'uv.lock'
17+
- '.github/workflows/**'
1418

1519
jobs:
1620
lint:

0 commit comments

Comments
 (0)