@@ -1436,6 +1436,10 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
1436
1436
" }\n" +
1437
1437
" }\" readonly=\"readonly\" ng-model=\"build.spec.strategy.jenkinsPipelineStrategy.jenkinsfile\" class=\"ace-bordered ace-inline ace-read-only\"></div>\n" +
1438
1438
"</dl>\n" +
1439
+ "<div ng-if=\"build | hasPostCommitHook\">\n" +
1440
+ "<h3>Build Hooks</h3>\n" +
1441
+ "<build-hooks build=\"build\"></build-hooks>\n" +
1442
+ "</div>\n" +
1439
1443
"</div>\n" +
1440
1444
"</div>\n" +
1441
1445
"<annotations annotations=\"build.metadata.annotations\"></annotations>\n" +
@@ -2128,6 +2132,10 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
2128
2132
" }\" readonly=\"readonly\" ng-model=\"buildConfig.spec.strategy.jenkinsPipelineStrategy.jenkinsfile\" class=\"ace-bordered ace-inline ace-read-only\"></div>\n" +
2129
2133
"</div>\n" +
2130
2134
"</dl>\n" +
2135
+ "<div ng-if=\"buildConfig | hasPostCommitHook\">\n" +
2136
+ "<h3>Build Hooks</h3>\n" +
2137
+ "<build-hooks build=\"buildConfig\"></build-hooks>\n" +
2138
+ "</div>\n" +
2131
2139
"</div>\n" +
2132
2140
"<div class=\"col-lg-6\">\n" +
2133
2141
"<h3>Triggers</h3>\n" +
@@ -6052,6 +6060,38 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
6052
6060
);
6053
6061
6054
6062
6063
+ $templateCache.put('views/directives/build-hooks.html',
6064
+ " <dl ng-class=\"{ 'dl-horizontal left': !build.spec.postCommit.script }\">\n" +
6065
+ "<dt ng-if-start=\"build.spec.postCommit.command\">Command:</dt>\n" +
6066
+ "<dd ng-if-end>\n" +
6067
+ "<code class=\"command\">\n" +
6068
+ "<truncate-long-text content=\"build.spec.postCommit.command.join(' ')\" limit=\"80\" newline-limit=\"1\" expandable=\"true\" use-word-boundary=\"false\">\n" +
6069
+ "</truncate-long-text>\n" +
6070
+ "</code>\n" +
6071
+ "</dd>\n" +
6072
+ "<dt ng-if-start=\"build.spec.postCommit.script\">Script:</dt>\n" +
6073
+ "<dd ng-if-end>\n" +
6074
+ "<div ui-ace=\"{\n" +
6075
+ " mode: 'sh',\n" +
6076
+ " theme: 'eclipse',\n" +
6077
+ " rendererOptions: {\n" +
6078
+ " fadeFoldWidgets: true,\n" +
6079
+ " showPrintMargin: false\n" +
6080
+ " }\n" +
6081
+ " }\" ng-model=\"build.spec.postCommit.script\" readonly=\"readonly\" class=\"ace-bordered ace-read-only ace-inline mar-top-md mar-bottom-md\">\n" +
6082
+ "</div>\n" +
6083
+ "</dd>\n" +
6084
+ "<dt ng-if-start=\"build.spec.postCommit.args\">Args:</dt>\n" +
6085
+ "<dd ng-if-end>\n" +
6086
+ "<code class=\"command\">\n" +
6087
+ "<truncate-long-text content=\"build.spec.postCommit.args.join(' ')\" limit=\"80\" newline-limit=\"1\" expandable=\"true\" use-word-boundary=\"false\">\n" +
6088
+ "</truncate-long-text>\n" +
6089
+ "</code>\n" +
6090
+ "</dd>\n" +
6091
+ "</dl>"
6092
+ );
6093
+
6094
+
6055
6095
$templateCache.put('views/directives/build-pipeline.html',
6056
6096
"<div>\n" +
6057
6097
"<div ng-if=\"expandOnlyRunning\">\n" +
0 commit comments