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
path: root/danger
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2021-12-17 10:29:00 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-12-17 11:01:09 +0300
commite5e9234f337d1cb6af23951bee42e0c6f0ca6525 (patch)
treecd12ad7f3713808bfda2f8ba65247335a99e6258 /danger
parent75a6bb0980eff73ff309ce10dd40d697f1295224 (diff)
danger: Remove tracking of team members
In our Dangerfile, we keep a list of team members, which is the perfect kind of variable to grow stale. And of course it is stale given that @jcaigitlab is missing from that list. Furthermore, its use is quite limited: the only thing we use it for is to propose to add a ~group::gitaly label if the merge request author is part of the group. Remove that group and the label-recommendation. While we could improve this to just fetch the list of team members automagically, it doesn't really feel worth.
Diffstat (limited to 'danger')
-rw-r--r--danger/rules/labels/Dangerfile1
1 files changed, 0 insertions, 1 deletions
diff --git a/danger/rules/labels/Dangerfile b/danger/rules/labels/Dangerfile
index 6bfee7178..6d1fa9d9b 100644
--- a/danger/rules/labels/Dangerfile
+++ b/danger/rules/labels/Dangerfile
@@ -11,7 +11,6 @@ def changelog_entry
end
required_labels = %w[devops::create]
-required_labels << "group::gitaly" if GITALY_TEAM.include?(gitlab.mr_author)
TYPE_TO_LABEL = {
'added' => %w[type::feature feature::addition],