File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 52
52
run : yarn fmt
53
53
54
54
- name : Fail workflow
55
- if : failure()
55
+ # Skip on forks
56
+ if : (github.event.pull_request.head.repo.full_name == github.repository || github.event_name) != 'pull_request' && failure()
56
57
57
58
58
59
lint-helm :
85
86
run : helm kubeval ci/helm-chart
86
87
87
88
- name : Fail workflow
88
- if : failure()
89
+ # Skip on forks
90
+ if : (github.event.pull_request.head.repo.full_name == github.repository || github.event_name) != 'pull_request' && failure()
89
91
90
92
91
93
lint-ts :
@@ -131,7 +133,8 @@ jobs:
131
133
run : yarn lint:ts
132
134
133
135
- name : Fail workflow
134
- if : failure()
136
+ # Skip on forks
137
+ if : (github.event.pull_request.head.repo.full_name == github.repository || github.event_name) != 'pull_request' && failure()
135
138
136
139
137
140
build :
You can’t perform that action at this time.
0 commit comments