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:
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 => []
}