File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 4
4
workflow_dispatch : # Allow manual triggering of this workflow.
5
5
6
6
push :
7
- paths : ["en/tutorials/"]
8
7
branches : ["master"]
8
+ paths :
9
+ - ' en/tutorials/**/*'
10
+ - ' .github/workflows/verify-guides.yml' # Reusable workflow
11
+ - ' .github/workflows/verify-guides-large.yml' # This workflow
9
12
10
13
pull_request :
11
- paths : ["en/tutorials/"] # Enable before merge!
12
14
branches : ["master"]
15
+ paths :
16
+ - ' en/tutorials/**/*'
17
+ - ' .github/workflows/verify-guides.yml' # Reusable workflow
18
+ - ' .github/workflows/verify-guides-large.yml' # This workflow
13
19
14
20
jobs :
15
21
large :
Original file line number Diff line number Diff line change 5
5
6
6
push :
7
7
branches : ["master"]
8
+ paths :
9
+ - ' *.md'
10
+ - ' *.html'
11
+ - ' **/*.md'
12
+ - ' **/*.html'
13
+ - ' .github/workflows/verify-guides.yml' # Reusable workflow
14
+ - ' .github/workflows/verify-guides-small.yml' # This workflow
8
15
9
16
pull_request :
10
17
branches : ["master"]
18
+ paths :
19
+ - ' *.md'
20
+ - ' *.html'
21
+ - ' **/*.md'
22
+ - ' **/*.html'
23
+ - ' .github/workflows/verify-guides.yml' # Reusable workflow
24
+ - ' .github/workflows/verify-guides-small.yml' # This workflow
11
25
12
26
jobs :
13
27
small :
You can’t perform that action at this time.
0 commit comments