File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- main
7
+ paths-ignore :
8
+ - ' .github/**' # exclude .github directory
9
+ - ' **.md' # exclude all markdown files
7
10
8
11
jobs :
9
12
docker :
Original file line number Diff line number Diff line change @@ -3,8 +3,19 @@ name: Go
3
3
on :
4
4
push :
5
5
branches : [main]
6
+ paths :
7
+ - ' **' # include all files
8
+ - ' !.github/**' # exclude .github directory
9
+ - ' !**.md' # exclude all markdown files
10
+ - ' doc-site/docs/reference/**.md' # include markdown files that are auto generated and need to be tested
11
+
6
12
pull_request :
7
- branches : [main]
13
+ paths :
14
+ - ' **' # include all files
15
+ - ' !.github/**' # exclude .github directory
16
+ - ' !**.md' # exclude all markdown files
17
+ - ' doc-site/docs/reference/**.md' # include markdown files that are auto generated and need to be tested
18
+
8
19
workflow_dispatch :
9
20
10
21
jobs :
You can’t perform that action at this time.
0 commit comments