Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 940 Bytes

File metadata and controls

24 lines (17 loc) · 940 Bytes

GL_PipelineVariable

Represents a variable defined within a pipeline schedule. Pipeline schedule variables override or supplement project-level CI/CD variables for the specific scheduled pipeline run. They are used to parameterise scheduled pipelines with different configuration, credentials, or environment values.

Properties

Property Name Data Type Description
name string Variable key name
value string Variable value
type string Variable type: env_var or file

Diagram

flowchart TD
    GL_AccessToken[fa:fa-key GL_AccessToken]
    GL_PipelineSchedule[fa:fa-clock-rotate-left GL_PipelineSchedule]
    GL_PipelineVariable[fa:fa-sliders GL_PipelineVariable]

    GL_PipelineSchedule -->|GL_Defines| GL_PipelineVariable
    GL_PipelineVariable -->|GL_IsToken| GL_AccessToken
Loading