Skip to content

Commit 5092aef

Browse files
committed
fix the workflow yml path filters
1 parent 1037738 commit 5092aef

3 files changed

Lines changed: 37 additions & 37 deletions

File tree

.github/workflows/bazel.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ on:
44
push:
55
branches: [ main ]
66
paths:
7-
- 'AppKit'
8-
- 'DebugUtils'
9-
- 'Foundation'
10-
- 'Resources'
11-
- 'UnitTesting'
12-
- 'iPhone'
7+
- 'AppKit/**'
8+
- 'DebugUtils/**'
9+
- 'Foundation/**'
10+
- 'Resources/**'
11+
- 'UnitTesting/**'
12+
- 'iPhone/**'
1313
- 'BUILD.bazel'
1414
- 'MODULE.bazel'
1515
- '.bazelc'
@@ -19,12 +19,12 @@ on:
1919
pull_request:
2020
branches: [ main ]
2121
paths:
22-
- 'AppKit'
23-
- 'DebugUtils'
24-
- 'Foundation'
25-
- 'Resources'
26-
- 'UnitTesting'
27-
- 'iPhone'
22+
- 'AppKit/**'
23+
- 'DebugUtils/**'
24+
- 'Foundation/**'
25+
- 'Resources/**'
26+
- 'UnitTesting/**'
27+
- 'iPhone/**'
2828
- 'BUILD.bazel'
2929
- 'MODULE.bazel'
3030
- '.bazelc'

.github/workflows/cocoapods.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@ on:
44
push:
55
branches: [ main ]
66
paths:
7-
- 'AppKit'
8-
- 'DebugUtils'
9-
- 'Foundation'
10-
- 'Resources'
11-
- 'UnitTesting'
12-
- 'iPhone'
13-
- '*.podspec'
7+
- 'AppKit/**'
8+
- 'DebugUtils/**'
9+
- 'Foundation/**'
10+
- 'Resources/**'
11+
- 'UnitTesting/**'
12+
- 'iPhone/**'
13+
- '*.podspec/**'
1414
- '.github/workflows/cocoapods.yml'
1515
pull_request:
1616
branches: [ main ]
1717
paths:
18-
- 'AppKit'
19-
- 'DebugUtils'
20-
- 'Foundation'
21-
- 'Resources'
22-
- 'UnitTesting'
23-
- 'iPhone'
18+
- 'AppKit/**'
19+
- 'DebugUtils/**'
20+
- 'Foundation/**'
21+
- 'Resources/**'
22+
- 'UnitTesting/**'
23+
- 'iPhone/**'
2424
- '*.podspec'
2525
- '.github/workflows/cocoapods.yml'
2626
schedule:

.github/workflows/xcode.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,24 @@ on:
44
push:
55
branches: [ main ]
66
paths:
7-
- 'AppKit'
8-
- 'DebugUtils'
9-
- 'Foundation'
10-
- 'Resources'
11-
- 'UnitTesting'
12-
- 'iPhone'
7+
- 'AppKit/**'
8+
- 'DebugUtils/**'
9+
- 'Foundation/**'
10+
- 'Resources/**'
11+
- 'UnitTesting/**'
12+
- 'iPhone/**'
1313
- '.github/workflows/xcode.yml'
1414
- '*.xcodeproj/**'
1515
- 'XcodeConfig/**'
1616
pull_request:
1717
branches: [ main ]
1818
paths:
19-
- 'AppKit'
20-
- 'DebugUtils'
21-
- 'Foundation'
22-
- 'Resources'
23-
- 'UnitTesting'
24-
- 'iPhone'
19+
- 'AppKit/**'
20+
- 'DebugUtils/**'
21+
- 'Foundation/**'
22+
- 'Resources/**'
23+
- 'UnitTesting/**'
24+
- 'iPhone/**'
2525
- '.github/workflows/xcode.yml'
2626
- '*.xcodeproj/**'
2727
- 'XcodeConfig/**'

0 commit comments

Comments
 (0)