2023-04-23 10:21:21 +00:00
|
|
|
{{template "repo/settings/layout_head" (dict "ctxData" . "pageClass" "repository settings branches")}}
|
|
|
|
<div class="repo-setting-content">
|
2024-08-17 18:24:31 +00:00
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{ctx.Locale.Tr "repo.settings.branch_protection" .Rule.RuleName}}
|
|
|
|
</h4>
|
|
|
|
<form class="ui form attached segment" action="{{.Link}}" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<input name="rule_id" type="hidden" value="{{.Rule.ID}}">
|
|
|
|
<fieldset class="branch-protection">
|
|
|
|
<legend>{{ctx.Locale.Tr "repo.settings.protect_patterns"}}</legend>
|
|
|
|
<label>{{ctx.Locale.Tr "repo.settings.protect_branch_name_pattern"}}
|
2023-01-16 08:00:22 +00:00
|
|
|
<input name="rule_name" type="text" value="{{.Rule.RuleName}}">
|
2024-08-17 18:24:31 +00:00
|
|
|
<span class="help">{{ctx.Locale.Tr "repo.settings.protect_branch_name_pattern_desc"}}</span>
|
|
|
|
</label>
|
|
|
|
<label>{{ctx.Locale.Tr "repo.settings.protect_protected_file_patterns"}}
|
2023-04-29 10:44:52 +00:00
|
|
|
<input name="protected_file_patterns" type="text" value="{{.Rule.ProtectedFilePatterns}}">
|
2024-08-17 18:24:31 +00:00
|
|
|
<span class="help">{{ctx.Locale.Tr "repo.settings.protect_protected_file_patterns_desc"}}</span>
|
|
|
|
</label>
|
|
|
|
<label>{{ctx.Locale.Tr "repo.settings.protect_unprotected_file_patterns"}}
|
2023-04-29 10:44:52 +00:00
|
|
|
<input name="unprotected_file_patterns" type="text" value="{{.Rule.UnprotectedFilePatterns}}">
|
2024-08-17 18:24:31 +00:00
|
|
|
<span class="help">{{ctx.Locale.Tr "repo.settings.protect_unprotected_file_patterns_desc"}}</span>
|
|
|
|
</label>
|
|
|
|
</fieldset>
|
2023-01-16 08:00:22 +00:00
|
|
|
|
2024-08-17 18:24:31 +00:00
|
|
|
<fieldset>
|
|
|
|
<legend>{{ctx.Locale.Tr "repo.settings.event_push"}}</legend>
|
|
|
|
<label>
|
|
|
|
<input name="enable_push" type="radio" value="none" class="toggle-target-disabled" data-target="#whitelist_box" {{if not .Rule.CanPush}}checked{{end}}>
|
|
|
|
{{ctx.Locale.Tr "repo.settings.protect_disable_push"}}
|
|
|
|
<span class="help">{{ctx.Locale.Tr "repo.settings.protect_disable_push_desc"}}</span>
|
|
|
|
</label>
|
|
|
|
<label>
|
|
|
|
<input name="enable_push" type="radio" value="all" class="toggle-target-disabled" data-target="#whitelist_box" {{if and (.Rule.CanPush) (not .Rule.EnableWhitelist)}}checked{{end}}>
|
|
|
|
{{ctx.Locale.Tr "repo.settings.protect_enable_push"}}
|
|
|
|
<span class="help">{{ctx.Locale.Tr "repo.settings.protect_enable_push_desc"}}</span>
|
|
|
|
</label>
|
|
|
|
<label>
|
|
|
|
<input name="enable_push" type="radio" value="whitelist" class="toggle-target-enabled" data-target="#whitelist_box" {{if and (.Rule.CanPush) (.Rule.EnableWhitelist)}}checked{{end}}>
|
|
|
|
{{ctx.Locale.Tr "repo.settings.protect_whitelist_committers"}}
|
|
|
|
<span class="help">{{ctx.Locale.Tr "repo.settings.protect_whitelist_committers_desc"}}</span>
|
|
|
|
</label>
|
2023-04-29 10:44:52 +00:00
|
|
|
<div id="whitelist_box" class="grouped fields {{if not .Rule.EnableWhitelist}}disabled{{end}}">
|
|
|
|
<div class="checkbox-sub-item field">
|
2023-09-25 08:56:50 +00:00
|
|
|
<label>{{ctx.Locale.Tr "repo.settings.protect_whitelist_users"}}</label>
|
2017-09-14 08:16:22 +00:00
|
|
|
<div class="ui multiple search selection dropdown">
|
|
|
|
<input type="hidden" name="whitelist_users" value="{{.whitelist_users}}">
|
2024-03-14 23:24:59 +00:00
|
|
|
<div class="default text">{{ctx.Locale.Tr "search.user_kind"}}</div>
|
2017-09-14 08:16:22 +00:00
|
|
|
<div class="menu">
|
|
|
|
{{range .Users}}
|
|
|
|
<div class="item" data-value="{{.ID}}">
|
2023-08-10 03:19:39 +00:00
|
|
|
{{ctx.AvatarUtils.Avatar . 28 "mini"}}{{template "repo/search_name" .}}
|
2017-09-14 08:16:22 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{if .Owner.IsOrganization}}
|
2023-04-29 10:44:52 +00:00
|
|
|
<div class="checkbox-sub-item field">
|
2023-09-25 08:56:50 +00:00
|
|
|
<label>{{ctx.Locale.Tr "repo.settings.protect_whitelist_teams"}}</label>
|
2017-09-14 08:16:22 +00:00
|
|
|
<div class="ui multiple search selection dropdown">
|
|
|
|
<input type="hidden" name="whitelist_teams" value="{{.whitelist_teams}}">
|
2024-03-14 23:24:59 +00:00
|
|
|
<div class="default text">{{ctx.Locale.Tr "search.team_kind"}}</div>
|
2017-09-14 08:16:22 +00:00
|
|
|
<div class="menu">
|
|
|
|
{{range .Teams}}
|
|
|
|
<div class="item" data-value="{{.ID}}">
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg "octicon-people"}}
|
2017-09-14 08:16:22 +00:00
|
|
|
{{.Name}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2023-04-29 10:44:52 +00:00
|
|
|
<div class="checkbox-sub-item field">
|
2019-10-21 08:21:45 +00:00
|
|
|
<div class="ui checkbox">
|
2023-01-16 08:00:22 +00:00
|
|
|
<input type="checkbox" name="whitelist_deploy_keys" {{if .Rule.WhitelistDeployKeys}}checked{{end}}>
|
2023-09-25 08:56:50 +00:00
|
|
|
<label>{{ctx.Locale.Tr "repo.settings.protect_whitelist_deploy_keys"}}</label>
|
2018-03-25 10:01:32 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-09-18 05:39:45 +00:00
|
|
|
</div>
|
2024-08-17 18:24:31 +00:00
|
|
|
<label>
|
|
|
|
<input name="require_signed_commits" type="checkbox" {{if .Rule.RequireSignedCommits}}checked{{end}}>
|
|
|
|
{{ctx.Locale.Tr "repo.settings.require_signed_commits"}}
|
|
|
|
<span class="help">{{ctx.Locale.Tr "repo.settings.require_signed_commits_desc"}}</span>
|
|
|
|
</label>
|
|
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
|
|
<legend>{{ctx.Locale.Tr "repo.settings.event_pull_request_approvals"}}</legend>
|
|
|
|
<label>
|
|
|
|
{{ctx.Locale.Tr "repo.settings.protect_required_approvals"}}
|
2023-04-29 10:44:52 +00:00
|
|
|
<input name="required_approvals" type="number" value="{{.Rule.RequiredApprovals}}">
|
2024-08-17 18:24:31 +00:00
|
|
|
<span class="help tw-ml-0">{{ctx.Locale.Tr "repo.settings.protect_required_approvals_desc"}}</span>
|
|
|
|
</label>
|
|
|
|
<fieldset>
|
|
|
|
<label>
|
|
|
|
<input name="enable_approvals_whitelist" type="checkbox" class="toggle-target-enabled" data-target="#approvals_whitelist_box" {{if .Rule.EnableApprovalsWhitelist}}checked{{end}}>
|
|
|
|
{{ctx.Locale.Tr "repo.settings.protect_approvals_whitelist_enabled"}}
|
|
|
|
<span class="help">{{ctx.Locale.Tr "repo.settings.protect_approvals_whitelist_enabled_desc"}}</span>
|
|
|
|
</label>
|
2023-04-29 10:44:52 +00:00
|
|
|
<div id="approvals_whitelist_box" class="grouped fields {{if not .Rule.EnableApprovalsWhitelist}}disabled{{end}}">
|
|
|
|
<div class="checkbox-sub-item field">
|
2023-09-25 08:56:50 +00:00
|
|
|
<label>{{ctx.Locale.Tr "repo.settings.protect_approvals_whitelist_users"}}</label>
|
2018-12-11 11:28:37 +00:00
|
|
|
<div class="ui multiple search selection dropdown">
|
|
|
|
<input type="hidden" name="approvals_whitelist_users" value="{{.approvals_whitelist_users}}">
|
2024-03-14 23:24:59 +00:00
|
|
|
<div class="default text">{{ctx.Locale.Tr "search.user_kind"}}</div>
|
2018-12-11 11:28:37 +00:00
|
|
|
<div class="menu">
|
|
|
|
{{range .Users}}
|
|
|
|
<div class="item" data-value="{{.ID}}">
|
2023-08-10 03:19:39 +00:00
|
|
|
{{ctx.AvatarUtils.Avatar . 28 "mini"}}{{template "repo/search_name" .}}
|
2018-12-11 11:28:37 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-12-04 01:08:56 +00:00
|
|
|
{{if .Owner.IsOrganization}}
|
2023-04-29 10:44:52 +00:00
|
|
|
<div class="checkbox-sub-item field">
|
2023-09-25 08:56:50 +00:00
|
|
|
<label>{{ctx.Locale.Tr "repo.settings.protect_approvals_whitelist_teams"}}</label>
|
2019-12-04 01:08:56 +00:00
|
|
|
<div class="ui multiple search selection dropdown">
|
|
|
|
<input type="hidden" name="approvals_whitelist_teams" value="{{.approvals_whitelist_teams}}">
|
2024-03-14 23:24:59 +00:00
|
|
|
<div class="default text">{{ctx.Locale.Tr "search.team_kind"}}</div>
|
2019-12-04 01:08:56 +00:00
|
|
|
<div class="menu">
|
|
|
|
{{range .Teams}}
|
|
|
|
<div class="item" data-value="{{.ID}}">
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg "octicon-people"}}
|
2019-12-04 01:08:56 +00:00
|
|
|
{{.Name}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2018-12-11 11:28:37 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-12-04 01:08:56 +00:00
|
|
|
{{end}}
|
2018-12-11 11:28:37 +00:00
|
|
|
</div>
|
2024-08-17 18:24:31 +00:00
|
|
|
</fieldset>
|
|
|
|
<label>
|
|
|
|
<input id="dismiss_stale_approvals" name="dismiss_stale_approvals" type="checkbox" {{if .Rule.DismissStaleApprovals}}checked{{end}}>
|
|
|
|
{{ctx.Locale.Tr "repo.settings.dismiss_stale_approvals"}}
|
|
|
|
<span class="help">{{ctx.Locale.Tr "repo.settings.dismiss_stale_approvals_desc"}}</span>
|
|
|
|
</label>
|
2024-01-15 07:20:01 +00:00
|
|
|
<div id="ignore_stale_approvals_box" class="field {{if .Rule.DismissStaleApprovals}}disabled{{end}}">
|
|
|
|
<div class="ui checkbox">
|
|
|
|
<input id="ignore_stale_approvals" name="ignore_stale_approvals" type="checkbox" {{if .Rule.IgnoreStaleApprovals}}checked{{end}}>
|
|
|
|
<label>{{ctx.Locale.Tr "repo.settings.ignore_stale_approvals"}}</label>
|
|
|
|
<p class="help">{{ctx.Locale.Tr "repo.settings.ignore_stale_approvals_desc"}}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-08-17 18:24:31 +00:00
|
|
|
<fieldset>
|
2020-11-28 19:30:46 +00:00
|
|
|
<div class="field">
|
|
|
|
<div class="ui checkbox">
|
2023-04-29 10:44:52 +00:00
|
|
|
<input name="enable_status_check" type="checkbox" class="toggle-target-enabled" data-target="#statuscheck_contexts_box" {{if .Rule.EnableStatusCheck}}checked{{end}}>
|
2023-09-25 08:56:50 +00:00
|
|
|
<label>{{ctx.Locale.Tr "repo.settings.protect_check_status_contexts"}}</label>
|
|
|
|
<p class="help">{{ctx.Locale.Tr "repo.settings.protect_check_status_contexts_desc"}}</p>
|
2020-11-28 19:30:46 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-04-29 10:44:52 +00:00
|
|
|
<div id="statuscheck_contexts_box" class="checkbox-sub-item field {{if not .Rule.EnableStatusCheck}}disabled{{end}}">
|
2023-09-25 08:56:50 +00:00
|
|
|
<label>{{ctx.Locale.Tr "repo.settings.protect_status_check_patterns"}}</label>
|
2023-05-17 08:11:13 +00:00
|
|
|
<textarea id="status_check_contexts" name="status_check_contexts" rows="3">{{.status_check_contexts}}</textarea>
|
2023-09-25 08:56:50 +00:00
|
|
|
<p class="help">{{ctx.Locale.Tr "repo.settings.protect_status_check_patterns_desc"}}</p>
|
2023-04-29 10:44:52 +00:00
|
|
|
<table class="ui celled table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2023-09-25 08:56:50 +00:00
|
|
|
<th>{{ctx.Locale.Tr "repo.settings.protect_check_status_contexts_list"}}</th>
|
2023-04-29 10:44:52 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2023-05-17 08:11:13 +00:00
|
|
|
{{range $.recent_status_checks}}
|
2023-04-29 10:44:52 +00:00
|
|
|
<tr>
|
|
|
|
<td>
|
2023-05-17 08:11:13 +00:00
|
|
|
<span>{{.}}</span>
|
2024-03-24 18:23:38 +00:00
|
|
|
<span class="status-check-matched-mark tw-hidden" data-status-check="{{.}}">{{ctx.Locale.Tr "repo.settings.protect_status_check_matched"}}</span>
|
2023-04-29 10:44:52 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{else}}
|
2023-05-02 09:54:29 +00:00
|
|
|
<tr><td>-</td></tr>
|
2023-04-29 10:44:52 +00:00
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2024-08-17 18:24:31 +00:00
|
|
|
</fieldset>
|
|
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
|
|
<legend>{{ctx.Locale.Tr "repo.settings.event_pull_request_merge"}}</legend>
|
2023-04-29 10:44:52 +00:00
|
|
|
<div class="grouped fields">
|
2020-01-09 01:47:45 +00:00
|
|
|
<div class="field">
|
2023-04-29 10:44:52 +00:00
|
|
|
<div class="ui radio checkbox">
|
|
|
|
<input name="enable_merge_whitelist" type="radio" value="false" class="toggle-target-disabled" data-target="#merge_whitelist_box" {{if not .Rule.EnableMergeWhitelist}}checked{{end}}>
|
2023-09-25 08:56:50 +00:00
|
|
|
<label>{{ctx.Locale.Tr "repo.settings.protect_enable_merge"}}</label>
|
|
|
|
<p class="help">{{ctx.Locale.Tr "repo.settings.protect_enable_merge_desc"}}</p>
|
2020-01-09 01:47:45 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-01-15 08:32:57 +00:00
|
|
|
<div class="field">
|
2023-04-29 10:44:52 +00:00
|
|
|
<div class="ui radio checkbox">
|
|
|
|
<input name="enable_merge_whitelist" type="radio" value="true" class="toggle-target-enabled" data-target="#merge_whitelist_box" {{if .Rule.EnableMergeWhitelist}}checked{{end}}>
|
2023-09-25 08:56:50 +00:00
|
|
|
<label>{{ctx.Locale.Tr "repo.settings.protect_merge_whitelist_committers"}}</label>
|
|
|
|
<p class="help">{{ctx.Locale.Tr "repo.settings.protect_merge_whitelist_committers_desc"}}</p>
|
2020-01-15 08:32:57 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-04-29 10:44:52 +00:00
|
|
|
<div id="merge_whitelist_box" class="grouped fields {{if not .Rule.EnableMergeWhitelist}}disabled{{end}}">
|
|
|
|
<div class="checkbox-sub-item field">
|
2023-09-25 08:56:50 +00:00
|
|
|
<label>{{ctx.Locale.Tr "repo.settings.protect_merge_whitelist_users"}}</label>
|
2023-04-29 10:44:52 +00:00
|
|
|
<div class="ui multiple search selection dropdown">
|
|
|
|
<input type="hidden" name="merge_whitelist_users" value="{{.merge_whitelist_users}}">
|
2024-03-14 23:24:59 +00:00
|
|
|
<div class="default text">{{ctx.Locale.Tr "search.user_kind"}}</div>
|
2023-04-29 10:44:52 +00:00
|
|
|
<div class="menu">
|
|
|
|
{{range .Users}}
|
|
|
|
<div class="item" data-value="{{.ID}}">
|
2023-08-10 03:19:39 +00:00
|
|
|
{{ctx.AvatarUtils.Avatar . 28 "mini"}}{{template "repo/search_name" .}}
|
2023-04-29 10:44:52 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-17 01:00:36 +00:00
|
|
|
</div>
|
2023-04-29 10:44:52 +00:00
|
|
|
{{if .Owner.IsOrganization}}
|
|
|
|
<div class="checkbox-sub-item field">
|
2023-09-25 08:56:50 +00:00
|
|
|
<label>{{ctx.Locale.Tr "repo.settings.protect_merge_whitelist_teams"}}</label>
|
2023-04-29 10:44:52 +00:00
|
|
|
<div class="ui multiple search selection dropdown">
|
|
|
|
<input type="hidden" name="merge_whitelist_teams" value="{{.merge_whitelist_teams}}">
|
2024-03-14 23:24:59 +00:00
|
|
|
<div class="default text">{{ctx.Locale.Tr "search.team_kind"}}</div>
|
2023-04-29 10:44:52 +00:00
|
|
|
<div class="menu">
|
|
|
|
{{range .Teams}}
|
|
|
|
<div class="item" data-value="{{.ID}}">
|
|
|
|
{{svg "octicon-people"}}
|
|
|
|
{{.Name}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-04-17 01:00:36 +00:00
|
|
|
</div>
|
2023-04-29 10:44:52 +00:00
|
|
|
</div>
|
2024-08-17 18:24:31 +00:00
|
|
|
<label>
|
|
|
|
<input name="block_on_rejected_reviews" type="checkbox" {{if .Rule.BlockOnRejectedReviews}}checked{{end}}>
|
|
|
|
{{ctx.Locale.Tr "repo.settings.block_rejected_reviews"}}
|
|
|
|
<span class="help">{{ctx.Locale.Tr "repo.settings.block_rejected_reviews_desc"}}</span>
|
|
|
|
</label>
|
|
|
|
<label>
|
|
|
|
<input name="block_on_official_review_requests" type="checkbox" {{if .Rule.BlockOnOfficialReviewRequests}}checked{{end}}>
|
|
|
|
{{ctx.Locale.Tr "repo.settings.block_on_official_review_requests"}}
|
|
|
|
<span class="help">{{ctx.Locale.Tr "repo.settings.block_on_official_review_requests_desc"}}</span>
|
|
|
|
</label>
|
|
|
|
<label>
|
|
|
|
<input name="block_on_outdated_branch" type="checkbox" {{if .Rule.BlockOnOutdatedBranch}}checked{{end}}>
|
|
|
|
{{ctx.Locale.Tr "repo.settings.block_outdated_branch"}}
|
|
|
|
<span class="help">{{ctx.Locale.Tr "repo.settings.block_outdated_branch_desc"}}</span>
|
|
|
|
</label>
|
|
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
|
|
<legend>{{ctx.Locale.Tr "repo.settings.event_pull_request_enforcement"}}</legend>
|
|
|
|
<label>
|
|
|
|
<input name="apply_to_admins" type="checkbox" {{if .Rule.ApplyToAdmins}}checked{{end}}>
|
|
|
|
{{ctx.Locale.Tr "repo.settings.enforce_on_admins"}}
|
|
|
|
<span class="help">{{ctx.Locale.Tr "repo.settings.enforce_on_admins_desc"}}</span>
|
|
|
|
</label>
|
|
|
|
</fieldset>
|
|
|
|
<button class="ui primary button">{{ctx.Locale.Tr "repo.settings.protected_branch.save_rule"}}</button>
|
2023-01-16 08:00:22 +00:00
|
|
|
</form>
|
2017-09-14 08:16:22 +00:00
|
|
|
</div>
|
2023-04-23 10:21:21 +00:00
|
|
|
{{template "repo/settings/layout_footer" .}}
|