Sha256: cdcb7630d3dd57ea715a5020037441f8c012bfd9ce6023778d64fc1ab3329667
Contents?: true
Size: 1.45 KB
Versions: 14
Compression:
Stored size: 1.45 KB
Contents
<%= render partial: 'shipit/stacks/header', locals: { stack: @stack } %> <div class="wrapper"> <section> <header class="section-header"> <h2>Commits included in this deploy (<%= link_to_github_deploy(@deploy) %>)</h2> </header> <%= render 'shipit/deploys/summary', commits: @deploy.commits %> </section> <%= render_monitoring @stack %> <%= render_checks @commit %> <%= render_checklist @stack.checklist %> <%= form_for [@stack, @deploy] do |f| %> <%= render partial: 'shipit/variables', locals: { variables: @deploy.variables, form: f, header: "Environment Variables", field_name: :env} %> <%= render 'concurrent_deploy_warning' if @stack.active_task? %> <section class="submit-section"> <%= f.hidden_field :until_commit_id %> <%= f.submit class: 'btn btn--primary btn--large trigger-deploy' %> </section> <% end %> <% unless @deploy.commits_since.empty? %> <section class="less-important"> <header class="section-header"> <h2>Commits not included in this deploy</h2> </header> <div> <p>The following commits are <strong>not</strong> included in this deploy. Please ensure that none of these commits are needed for what <strong>is</strong> being deployed (for example, if they contain the revert of a broken change).</p> <%= render 'shipit/deploys/summary', commits: @deploy.commits_since %> </div> </section> <% end %> </div>
Version data entries
14 entries across 14 versions & 1 rubygems