Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
1663e824
Commit
1663e824
authored
Apr 05, 2020
by
Alexander Kutelev
Committed by
Alexander Kutelev
Apr 21, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disallow developers to delete builds of protected branches.
parent
35b18fe2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
8 deletions
+29
-8
app/policies/ci/build_policy.rb
app/policies/ci/build_policy.rb
+9
-1
changelogs/unreleased/35069-protect-builds.yml
changelogs/unreleased/35069-protect-builds.yml
+5
-0
doc/user/permissions.md
doc/user/permissions.md
+3
-1
spec/policies/ci/build_policy_spec.rb
spec/policies/ci/build_policy_spec.rb
+12
-6
No files found.
app/policies/ci/build_policy.rb
View file @
1663e824
...
...
@@ -12,6 +12,14 @@ module Ci
end
end
condition
(
:unprotected_ref
)
do
if
@subject
.
tag?
!
ProtectedTag
.
protected?
(
@subject
.
project
,
@subject
.
ref
)
else
!
ProtectedBranch
.
protected?
(
@subject
.
project
,
@subject
.
ref
)
end
end
condition
(
:owner_of_job
)
do
@subject
.
triggered_by?
(
@user
)
end
...
...
@@ -34,7 +42,7 @@ module Ci
prevent
:erase_build
end
rule
{
can?
(
:admin_build
)
|
(
can?
(
:update_build
)
&
owner_of_job
)
}.
enable
:erase_build
rule
{
can?
(
:admin_build
)
|
(
can?
(
:update_build
)
&
owner_of_job
&
unprotected_ref
)
}.
enable
:erase_build
rule
{
can?
(
:public_access
)
&
branch_allows_collaboration
}.
policy
do
enable
:update_build
...
...
changelogs/unreleased/35069-protect-builds.yml
0 → 100644
View file @
1663e824
---
title
:
Disallow developers to delete builds of protected branches
merge_request
:
28881
author
:
Alexander Kutelev
type
:
changed
doc/user/permissions.md
View file @
1663e824
...
...
@@ -379,7 +379,9 @@ instance and project. In addition, all admins can use the admin interface under
| See events in the system | | | | ✓ |
| Admin interface | | | | ✓ |
1.
Only if the job was triggered by the user
1.
Only if the job was:
-
Triggered by the user
-
[
Since GitLab 13.0
](
https://gitlab.com/gitlab-org/gitlab/-/issues/35069
)
, not run for a protected branch
### Job permissions
...
...
spec/policies/ci/build_policy_spec.rb
View file @
1663e824
...
...
@@ -176,15 +176,21 @@ describe Ci::BuildPolicy do
end
context
'when developers can push to the branch'
do
before
do
create
(
:protected_branch
,
:developers_can_push
,
name:
build
.
ref
,
project:
project
)
end
context
'when the build was created by the developer'
do
let
(
:owner
)
{
user
}
it
{
expect
(
policy
).
to
be_allowed
:erase_build
}
context
'when the build was created for a protected ref'
do
before
do
create
(
:protected_branch
,
:developers_can_push
,
name:
build
.
ref
,
project:
project
)
end
it
{
expect
(
policy
).
to
be_disallowed
:erase_build
}
end
context
'when the build was created for an unprotected ref'
do
it
{
expect
(
policy
).
to
be_allowed
:erase_build
}
end
end
context
'when the build was created by the other'
do
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment