summaryrefslogtreecommitdiff
path: root/lib/API/GitForge/GitLab.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/API/GitForge/GitLab.pm')
-rw-r--r--lib/API/GitForge/GitLab.pm11
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/API/GitForge/GitLab.pm b/lib/API/GitForge/GitLab.pm
index 7ffd844..b264eb9 100644
--- a/lib/API/GitForge/GitLab.pm
+++ b/lib/API/GitForge/GitLab.pm
@@ -101,11 +101,14 @@ sub _clean_config_fork {
$self->{_api}->edit_project(
"$user/$repo",
{
- default_branch => "gitforge",
- description => "Temporary fork for merge request(s)",
+ default_branch => "gitforge",
+ description => "Temporary fork for merge request(s)",
+ issues_access_level => "disabled",
+ # merge requests have to be enabled in the fork in order
+ # to submit merge requests to the upstream repo from which
+ # we forked, it seems
+ merge_requests_access_level => "enabled",
});
-
- $self->_clean_config_repo("$user/$repo");
}
sub _ensure_repo {