mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-03 02:43:18 +00:00
30 lines
612 B
Plaintext
30 lines
612 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# glab pipeline
|
|
|
|
> List, view, and run GitLab CI/CD pipelines.
|
|
> More information: <https://glab.readthedocs.io/en/latest/pipeline>.
|
|
|
|
- View a running pipeline on the current branch:
|
|
|
|
`glab pipeline status`
|
|
|
|
- View a running pipeline on a specific branch:
|
|
|
|
`glab pipeline status --branch {{branch_name}}`
|
|
|
|
- Get the list of pipelines:
|
|
|
|
`glab pipeline list`
|
|
|
|
- Run a manual pipeline on the current branch:
|
|
|
|
`glab pipeline run`
|
|
|
|
- Run a manual pipeline on a specific branch:
|
|
|
|
`glab pipeline run --branch {{branch_name}}`
|