github.com/zppinho/prow@v0.0.0-20240510014325-1738badeb017/cmd/deck/template/tide.html (about)

     1  {{define "title"}}Tide Status{{end}}
     2  
     3  {{define "scripts"}}
     4  <link rel="stylesheet" type="text/css" href="/static/labels.css?v={{deckVersion}}">
     5  <script type="text/javascript" src="/static/tide_bundle.min.js?v={{deckVersion}}"></script>
     6  <script type="text/javascript" src="tide.js?var=tideData"></script>
     7  {{end}}
     8  
     9  {{define "content"}}
    10  <article>
    11    <div id="info-div" class="card-box">
    12      <h4 style="user-select: none">Merge Requirements: (click to expand)</h4>
    13      <span class="hidden">
    14        <hr>
    15        <p><strong>All <a href="https://help.github.com/articles/about-required-status-checks/">GitHub statuses</a> on a Pull Request must be passing / green for automatic merge&nbsp;<span class="success">✓</span></strong></p>
    16        <p><strong>Prow test results are ignored if they do not test the Pull Request against the most recent commit on the branch.</strong></p>
    17        <p><strong>Your Pull Request must also match one of these GitHub search queries (you can click them to check):</strong></p>
    18        <ul id="queries"></ul>
    19      </span>
    20    </div>
    21  </article>
    22  <article>
    23    <div class="table-container">
    24      <table id="pools">
    25        <thead>
    26          <th></th>
    27          <th>Repo</th>
    28          <th>State</th>
    29          <th>Batch</th>
    30          <th>Passing</th>
    31          <th>Pending</th>
    32          <th>Queued for Retest</th>
    33        </thead>
    34        <tbody>
    35        </tbody>
    36      </table>
    37    </div>
    38  </article>
    39  {{end}}
    40  
    41  {{template "page" (settings mobileUnfriendly lightMode "tide" .)}}