Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 790 Bytes

File metadata and controls

24 lines (16 loc) · 790 Bytes

GL_RunsOn

Edge Schema

Edge Properties

Property Type Description
commit string The specific commit SHA the pipeline ran on

General Information

The non-traversable GL_RunsOn edge records which branch/ref a pipeline was executed against, along with the specific commit SHA. This is the inverse perspective of GL_Triggers: while GL_Triggers shows what triggered a pipeline, GL_RunsOn shows which branch context the pipeline ran in.

graph LR
    pipe("fa:fa-angles-right GL_Pipeline #42")
    branch("fa:fa-code-branch GL_Branch main")

    pipe -.->|"GL_RunsOn (commit: abc1234)"| branch
Loading