Iterations

Version history
  • Introduced in GitLab Starter 13.1.
  • フィーチャーフラグで有効・無効を切り替えることができ、デフォルトでは無効になっています。
  • It’s disabled on GitLab.com.
  • It’s able to be enabled or disabled per-group
  • It’s not recommended for production use.
  • GitLabのセルフマネージドインスタンスで使用するには、GitLabの管理者に有効にしてもらう必要があります。

Iterations are a way to track issues over a period of time. This allows teams to track velocity and volatility metrics. Iterations can be used with milestones for tracking over different time periods.

For example, you can use:

  • Milestones for Program Increments, which span 8-12 weeks.
  • Iterations for Sprints, which span 2 weeks.

In GitLab, iterations are similar to milestones, with a few differences:

  • Iterations are only available to groups.
  • A group can only have one active iteration at a time.
  • Iterations require both a start and an end date.
  • Iteration date ranges cannot overlap.

View the iterations list

To view the iterations list, in a group, go to Issues > Iterations. From there you can create a new iteration or click an iteration to get a more detailed view.

Create an iteration

Note: You need Developer permissions or higher to create an iteration.

To create an iteration:

  1. In a group, go to Issues > Iterations.
  2. Click New iteration.
  3. Enter the title, a description (optional), a start date, and a due date.
  4. Click Create iteration. The iteration details page opens.

Edit an iteration

Version history
Note: You need Developer permissions or higher to edit an iteration.

To edit an iteration, click the three-dot menu () > Edit iteration.

Enable Iterations

GitLab Iterations feature is under development and not ready for production use. It is deployed behind a feature flag that is disabled by default. GitLab administrators with access to the GitLab Rails console can enable it for your instance. :group_iterations can be enabled or disabled per-group.

有効にするには:

# Instance-wide
Feature.enable(:group_iterations)
# or by group
Feature.enable(:group_iterations, Group.find(<group id>))

無効化するには:

# Instance-wide
Feature.disable(:group_iterations)
# or by group
Feature.disable(:group_iterations, Group.find(<group id>))