20 lines
459 B
Handlebars
20 lines
459 B
Handlebars
{{#if jobs.length}}
|
|
<section>
|
|
|
|
{{#if required}}
|
|
<h2 class="build-title">Build Jobs</h2>
|
|
{{else}}
|
|
<h2 class="build-title">Allowed Failures
|
|
<span class="icon icon--question"></span>
|
|
<div class="tooltip">
|
|
<p class="tooltip-inner">These are jobs you can allow to fail without failing your entire build</p>
|
|
</div>
|
|
</h2>
|
|
{{/if}}
|
|
|
|
{{#each job in jobs}}
|
|
{{jobs-item job=job}}
|
|
{{/each}}
|
|
</section>
|
|
{{/if}}
|