gitlab-ce/app/views/protected_branches/shared/_index.html.haml

54 lines
3.2 KiB
Plaintext

- can_admin_entity = protected_branch_can_admin_entity?(protected_branch_entity)
- expanded = expanded_by_default?
= render ::Layouts::SettingsBlockComponent.new(s_("ProtectedBranch|Protected branches"),
id: 'js-protected-branches-settings',
testid: 'protected-branches-settings-content',
expanded: expanded) do |c|
- c.with_description do
= s_("ProtectedBranch|Keep stable branches secure and force developers to use merge requests.")
= link_to s_("ProtectedBranch|What are protected branches?"), help_page_path("user/project/repository/branches/protected.md")
- if @project.present?
- branch_rules_docs_link_url = help_page_path('user/project/repository/branches/branch_rules.md')
- branch_rules_link_url = project_settings_repository_path(@project, anchor: 'branch-rules')
- branch_rules_link_start = '<a href="%{url}" rel="noopener noreferrer">'.html_safe % { url: branch_rules_link_url }
= render Pajamas::AlertComponent.new( alert_options: { class: 'gl-mr-7 gl-mt-5' },
dismissible: false) do |c|
- c.with_body do
= s_("ProtectedBranch|Protected branches is moving to %{branch_rules_link_start}Branch rules%{branch_rules_link_end}.").html_safe % { branch_rules_link_start: branch_rules_link_start, branch_rules_link_end: '</a>'.html_safe }
= s_("ProtectedBranch|You can now manage branch protections, approval rules, and status checks in one place.")
= link_to s_("ProtectedBranch|How do I use branch rules?"), branch_rules_docs_link_url, target: '_blank', rel: 'noopener noreferrer'
- c.with_body do
.js-alert-protected-branch-created-container
= render Pajamas::AlertComponent.new(variant: :warning,
alert_options: { class: 'gl-mb-5' },
dismissible: false) do |c|
- c.with_body do
= s_("ProtectedBranch|Giving merge rights to a protected branch also gives elevated permissions for certain CI/CD features.")
= link_to s_("ProtectedBranch|What are the security implications?"), help_page_path('ci/pipelines/_index.md', anchor: 'pipeline-security-on-protected-branches'), target: '_blank', rel: 'noopener noreferrer'
%br
= s_("MergeRequest|Control access to protected variables and runners in merge request pipelines")
= link_to s_('Learn more.'), help_page_url('ci/pipelines/merge_request_pipelines.md', anchor: 'control-access-to-protected-variables-and-runners'), target: '_blank'
= render ::Layouts::CrudComponent.new(s_("ProtectedBranch|Protected branches"),
icon: 'branch',
count: @protected_branches.size,
toggle_text: _('Add protected branch'),
toggle_options: { data: { testid: 'add-protected-branch-button' } }) do |c|
- c.with_description do
= s_("ProtectedBranch|By default, protected branches restrict who can modify the branch.")
= link_to s_("ProtectedBranch|Learn more."), help_page_path("user/project/repository/branches/protection_rules.md", anchor: "push-and-merge-permissions")
- c.with_body do
= content_for :branches_list
- c.with_form do
- if can_admin_entity
= content_for :create_protected_branch
- c.with_pagination do
= paginate @protected_branches, theme: 'gitlab', params: { anchor: 'js-protected-branches-settings' }