Add info to the build pane that shows if a trigger started the build
This commit is contained in:
parent
5b0300ab62
commit
c494c889f5
5 changed files with 37 additions and 11 deletions
9
static/directives/trigger-description.html
Normal file
9
static/directives/trigger-description.html
Normal file
|
@ -0,0 +1,9 @@
|
|||
<span class="trigger-description-element" ng-switch on="trigger.service">
|
||||
<span ng-switch-when="github">
|
||||
<i class="fa fa-github fa-lg" style="margin-right: 6px" title="GitHub" bs-tooltip="tooltip.title"></i>
|
||||
Push to GitHub repository <a href="https://github.com/{{ trigger.config.build_source }}" target="_new">{{ trigger.config.build_source }}</a>
|
||||
</span>
|
||||
<span ng-switch-default>
|
||||
Unknown
|
||||
</span>
|
||||
</span>
|
Reference in a new issue