Sha256: 47b2353211e58c151a196c1ece951c5f87eb7d4ff2915bc9b85b4ca41ac30011
Contents?: true
Size: 1.2 KB
Versions: 1
Compression:
Stored size: 1.2 KB
Contents
<%= render partial: "stacks/header", locals: { stack: @stack } %> <div class="wrapper"> <%= render 'concurrent_deploy_warning' if @stack.deploying? %> <section> <header class="section-header"> <h2>Commits included in this deploy</h2> </header> <p><%= link_to_github_deploy(@deploy) %></p> <%= render 'deploys/summary', commits: @deploy.commits %> </section> <% unless @deploy.commits_since.empty? %> <section class="less-important"> <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 'deploys/summary', commits: @deploy.commits_since %> </section> <% end %> <%= render_monitoring @stack %> <%= render_checklist @stack %> <section class="submit-section"> <%= form_for [@stack, @deploy] do |f| %> <% if @stack.deploying? %> <%= hidden_field_tag :force, value: true %> <% end %> <%= f.hidden_field :until_commit_id %> <%= f.submit :class => ['btn', 'primary', 'trigger-deploy'] %> <% end %> </section> </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
shipit-engine-0.0.1.pre | app/views/deploys/new.html.erb |