Forrest logo
back to the glab tool

glab-pipeline:tldr:3bce5

glab-pipeline: Get the list of pipelines.
$ glab pipeline list
try on your machine

The command glab pipeline list is used in GitLab to display a list of pipelines for a project.

In GitLab, pipelines are automated workflows that are triggered upon certain events, such as code pushes or merge requests, and they allow you to execute various jobs defined in your project's configuration.

When you run glab pipeline list, GitLab will query the GitLab API to retrieve the list of pipelines for the current project. The command will typically display information about each pipeline, such as its ID, status (e.g., running, failed, canceled), duration, ref (the branch or tag that triggered the pipeline), and the commit associated with the pipeline.

This command is helpful to get an overview of the pipelines in a project and their statuses. It allows you to see which pipelines are currently running, which have failed, or which have been successfully completed. Additionally, you can use this command with other flags or options to filter or sort the list based on criteria like the creation date of the pipelines or the status of the jobs within each pipeline.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the glab tool