Add latest changes from gitlab-org/gitlab@master

This commit is contained in:
GitLab Bot
2025-06-27 09:09:53 +00:00
parent 4dd31f4f94
commit 3c94048744
47 changed files with 1187 additions and 899 deletions

View File

@ -17,8 +17,7 @@ response = http.request(request)
stages_doc = YAML.safe_load(response.read_body)
feature_categories = stages_doc["stages"].values
.flat_map { |stage| stage["groups"].values }
.flat_map { |group| group["categories"] }
.select(&:itself)
.flat_map { |group| group["categories"] + group.fetch("maintained_categories", []) }
.uniq
.sort