Forrest logo
back to the gitlab tool

gitlab:tldr:27bfd

gitlab: Get info about jobs in a CI pipeline.
$ gitlab pipeline_jobs ${project_name} ${pipeline_id}
try on your machine

The command gitlab pipeline_jobs ${project_name} ${pipeline_id} is used to retrieve a list of jobs associated with a specific pipeline in GitLab.

Here is the breakdown of the command:

  • gitlab is a command-line tool or GitLab API client.
  • pipeline_jobs is a specific command or function within the gitlab tool that retrieves information about jobs in a pipeline.
  • ${project_name} is a placeholder for the name or identifier of the GitLab project where the pipeline is located. You need to replace ${project_name} with the actual name of your project.
  • ${pipeline_id} is a placeholder for the unique identifier of the pipeline. You need to replace ${pipeline_id} with the actual ID of the pipeline you want to retrieve jobs for.

By executing this command with the correct project name and pipeline ID, you will get a list of jobs associated with that specific pipeline in the GitLab project.

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 gitlab tool