Skip to content

Import backlog labelling and refinement

Goal

Triage the groupimport backlog to meet the goals outlined in https://gitlab.com/gitlab-org/gitlab/-/issues/558111 and gitlab-org/core-devops/internal-discussions#7.

For each epic and issue:

  • Apply backlogprospective to all issues that are in progress or still relevant for the next 12-18 months
  • For other issues, apply backlogno-commitment or close them as Won't do (use the custom status)

Current state (gitlab-org)

WITH a backlog::* label WITHOUT a backlog::* label
display: table
title: ✅ Issues
collapsed: true
fields: title, labels("type::*") as "Type", labels("maintenance::*", "bug::*", "feature::*") as "Subtype"
query: group = "gitlab-org" and type = Issue and state = opened and labels = "group::import" and labels = "backlog::*"
display: table
title: ❌ Issues
collapsed: true
fields: title, labels("type::*") as "Type", labels("maintenance::*", "bug::*", "feature::*") as "Subtype"
query: group = "gitlab-org" and type = Issue and state = opened and labels = "group::import" and labels != "backlog::*"
display: table
title: ✅ Epics
collapsed: true
fields: title, labels("type::*") as "Type", labels("maintenance::*", "bug::*", "feature::*") as "Subtype"
query: group = "gitlab-org" and type = Epic and state = opened and labels = "group::import" and labels = "backlog::*"
display: table
title: ❌ Epics
collapsed: true
fields: title, labels("type::*") as "Type", labels("maintenance::*", "bug::*", "feature::*") as "Subtype"
query: group = "gitlab-org" and type = Epic and state = opened and labels = "group::import" and labels != "backlog::*"
Edited by Darva Satcher