glab-ci-run-trig - Man Page

Run a CI/CD pipeline trigger.

Synopsis

glab ci run-trig [flags]

Description

Specify one or more pipeline inputs using the -i or --input flag for each input. Each input flag uses the format key:value.

The values are typed and will default to string unless a type is explicitly specified. To specify a type, use the type(value) syntax. For example, key:string(value) will pass the string value as the input.

Valid types are:

An array of strings can be specified with a trailing comma. For example, key:array(foo,bar,) will pass the array [foo, bar]. array() specifies an empty array. To pass an array with the empty string, use array(,).

Value arguments containing parentheses should be escaped from the shell with quotes. For example, --input key:array(foo,bar) should be written as --input 'key:array(foo,bar)'.

Options

-b, --branch="" Create pipeline on branch or reference .

-i, --input=[] Pass inputs to pipeline in format ':'. Cannot be used for merge request pipelines. See documentation for examples.

-t,  --token="" Pipeline trigger token. Can be omitted only if the CI_JOB_TOKEN
environment variable is set.

--variables=[] Pass variables to pipeline in the format :.

Options Inherited from Parent Commands

-h, --help[=false] Show help for this command.

-R,  --repo="" Select another repository. Can use either OWNER/REPO or GROUP/NAMESPACE/REPO
format. Also accepts full URL or Git URL.

Example

$ glab ci run-trig -t xxxx
$ glab ci run-trig -t xxxx -b main

# Specify CI variables
$ glab ci run-trig -t xxxx -b main --variables key1:val1
$ glab ci run-trig -t xxxx -b main --variables key1:val1,key2:val2
$ glab ci run-trig -t xxxx -b main --variables key1:val1 --variables key2:val2

# Specify CI inputs
$ glab ci run-trig -t xxxx -b main --input key1:val1 --input key2:val2
$ glab ci run-trig -t xxxx -b main --input "replicas:int(3)" --input "debug:bool(false)" --input "regions:array(us-east,eu-west)"

See Also

glab-ci(1)

Referenced By

glab-ci(1).

Nov 2025 Auto generated by spf13/cobra