From bbd910ed1b4f52ee66a5cdd8d11f856598161bef Mon Sep 17 00:00:00 2001 From: Lauris BH Date: Fri, 27 Mar 2020 00:26:34 +0200 Subject: Allow to set protected file patterns that can not be changed under no conditions (#10806) Co-Authored-By: zeripath --- modules/structs/repo_branch.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'modules/structs/repo_branch.go') diff --git a/modules/structs/repo_branch.go b/modules/structs/repo_branch.go index f8c9290548..886018c858 100644 --- a/modules/structs/repo_branch.go +++ b/modules/structs/repo_branch.go @@ -41,6 +41,7 @@ type BranchProtection struct { BlockOnRejectedReviews bool `json:"block_on_rejected_reviews"` DismissStaleApprovals bool `json:"dismiss_stale_approvals"` RequireSignedCommits bool `json:"require_signed_commits"` + ProtectedFilePatterns string `json:"protected_file_patterns"` // swagger:strfmt date-time Created time.Time `json:"created_at"` // swagger:strfmt date-time @@ -67,6 +68,7 @@ type CreateBranchProtectionOption struct { BlockOnRejectedReviews bool `json:"block_on_rejected_reviews"` DismissStaleApprovals bool `json:"dismiss_stale_approvals"` RequireSignedCommits bool `json:"require_signed_commits"` + ProtectedFilePatterns string `json:"protected_file_patterns"` } // EditBranchProtectionOption options for editing a branch protection @@ -88,4 +90,5 @@ type EditBranchProtectionOption struct { BlockOnRejectedReviews *bool `json:"block_on_rejected_reviews"` DismissStaleApprovals *bool `json:"dismiss_stale_approvals"` RequireSignedCommits *bool `json:"require_signed_commits"` + ProtectedFilePatterns *string `json:"protected_file_patterns"` } -- cgit v1.2.3