File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
1
name : Sub-dir and sub-project KiBot CI/CD example
2
2
3
3
# Controls when the action will run. Triggers the workflow on push or pull request
4
- # events but only for the master branch
4
+ # events
5
5
# If any of the listed file changes we run the workflow
6
6
on :
7
7
push :
8
- branches : [ master ]
8
+ # Use the following syntax to limit on which branches we run the workflow
9
+ # branches: [ master ]
9
10
paths :
10
11
- ' test_subdir/test_subdir.kicad_sch'
11
12
- ' test_subdir/test_subdir.kicad_pcb'
12
13
- ' test_subdir/test_subdir.kibot.yaml'
13
14
- ' .github/workflows/test_subdir.yml'
14
15
pull_request :
15
- branches : [ master ]
16
+ # branches: [ master ]
16
17
paths :
17
18
- ' test_subdir/test_subdir.kicad_sch'
18
19
- ' test_subdir/test_subdir.kicad_pcb'
Original file line number Diff line number Diff line change @@ -24,14 +24,12 @@ In this file we:
24
24
```
25
25
on:
26
26
push:
27
- branches: [ master ]
28
27
paths:
29
28
- 'kicad_ci_test.kicad_sch'
30
29
- 'kicad_ci_test.kicad_pcb'
31
30
- 'kicad_ci_test.kibot.yaml'
32
31
- '.github/workflows/test1.yml'
33
32
pull_request:
34
- branches: [ master ]
35
33
paths:
36
34
- 'kicad_ci_test.kicad_sch'
37
35
- 'kicad_ci_test.kicad_pcb'
You can’t perform that action at this time.
0 commit comments