Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Horvath <ahorvath@gitlab.com>2023-07-10 15:11:49 +0300
committerAndras Horvath <ahorvath@gitlab.com>2023-07-10 15:11:49 +0300
commit92e441aabf41c0793da9cb0ea1be58175f990f80 (patch)
treebca466a3052d99ce98e56e3a8a40f7c52a6c7f01
parent20fe02e33885f459cddfb32717e02141d01ab12f (diff)
parent69e1c2e33b2b1c6c24045f342cc5ba37caba2f12 (diff)
Merge branch 'jc/danger-remove-auto-group-labeling' into 'master'
Danger: Do not label devops::systems indiscriminantly See merge request https://gitlab.com/gitlab-org/gitaly/-/merge_requests/6035 Merged-by: Andras Horvath <ahorvath@gitlab.com> Approved-by: Andras Horvath <ahorvath@gitlab.com> Co-authored-by: John Cai <jcai@gitlab.com>
-rw-r--r--danger/rules/labels/Dangerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/danger/rules/labels/Dangerfile b/danger/rules/labels/Dangerfile
index b52d831fa..9c0363d15 100644
--- a/danger/rules/labels/Dangerfile
+++ b/danger/rules/labels/Dangerfile
@@ -22,7 +22,7 @@ end
GITALY_TEAM = gitlab.api.all_group_members("gl-gitaly").flat_map{ |i| i.username }
-required_labels = %w[devops::systems]
+required_labels = []
required_labels << "group::gitaly" if GITALY_TEAM.include?(gitlab.mr_author)
helper.labels_to_add.concat(required_labels | inherited_labels)