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:
authorRémy Coutable <remy@rymai.me>2021-10-27 11:15:14 +0300
committerRémy Coutable <remy@rymai.me>2021-10-27 11:15:14 +0300
commit17e6b24b57bddce455cd109ef5c1f4d00c467ff2 (patch)
treed9e3f15b13e5de74fbe553565c87957681276133 /danger
parentba8bc12dd0ff83fc726c6c09ee0cb0ebc311a748 (diff)
Transition type labels to the new scoped taxonomy
Diffstat (limited to 'danger')
-rw-r--r--danger/changelog/Dangerfile2
-rw-r--r--danger/labels/Dangerfile14
2 files changed, 8 insertions, 8 deletions
diff --git a/danger/changelog/Dangerfile b/danger/changelog/Dangerfile
index 0aa9ff9ee..fae781a86 100644
--- a/danger/changelog/Dangerfile
+++ b/danger/changelog/Dangerfile
@@ -32,7 +32,7 @@ end
NO_CHANGELOG_LABELS = [
'documentation',
- 'tooling',
+ 'type::tooling',
'tooling::pipelines',
'tooling::workflow',
'ci-build',
diff --git a/danger/labels/Dangerfile b/danger/labels/Dangerfile
index b10259cd0..6bfee7178 100644
--- a/danger/labels/Dangerfile
+++ b/danger/labels/Dangerfile
@@ -14,14 +14,14 @@ required_labels = %w[devops::create]
required_labels << "group::gitaly" if GITALY_TEAM.include?(gitlab.mr_author)
TYPE_TO_LABEL = {
- 'added' => %w[feature feature::addition],
- 'fixed' => ['bug'],
- 'changed' => %w[feature feature::maintenance],
- 'deprecated' => %w[feature feature::maintenance],
+ 'added' => %w[type::feature feature::addition],
+ 'fixed' => ['type::bug'],
+ 'changed' => ['type::maintenance'],
+ 'deprecated' => ['type::maintenance'],
'security' => ['security'],
- 'removed' => %w[feature feature::maintenance],
- 'performance' => %w[feature feature::maintenance performance],
- 'other' => ['tooling'],
+ 'removed' => ['type::maintenance'],
+ 'performance' => %w[type::maintenance performance],
+ 'other' => ['type::tooling'],
nil => []
}