Welcome to mirror list, hosted at ThFree Co, Russian Federation.

new_release_email.text.erb « notify « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e03cf2d5fd1af48fec0b2fc6b7dc077fbe0045ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<%= _("A new Release %{tag} for %{name} was published. Visit the Releases page to read more about it:").html_safe % { tag: @release.tag, name: @project.name } %> <%= @target_url %>

<%= _("Assets:") %>
<% @release.links.each do |link| -%>
  - <%= link.name %>: <%= link.url %>
<% end -%>
<% @release.sources.each do |source| -%>
  - <%= _("Download %{format}:") % { format: source.format } %> <%= source.url %>
<% end -%>

<%= _("Release notes:") %>
<%= @release.description %>