Change default labels

I want to change the default problem labels. I tried changing the code in lib / gitlab / issues_labels.rb, which I thought was where it generated the default labels. however, this did not actually work. Does anyone know how to change the default labels created for a project?

+4
source share
1 answer

Gitlab 5.2.0 (May 2013) introduced "The ability to generate default labels set for problems."

It comes from commit 71647fd ,issues_labels.rb

 labels = important_labels + warning_labels + neutral_labels + positive_labels
 project.issues_default_label_list = labels

, lib/gitlab/issues_labels.rb , , , / Gitlab, , Gitlab ( ).

+4

Source: https://habr.com/ru/post/1530141/


All Articles