Tagging/labeling for pipeline

Myorganization uses Buildkite for both CI tasks as well as maintenance tasks that happen periodically. At some point, it becomes more difficult to find the pipeline status that matters.

I’m making do with marking pipelines as favorites. I would like to have some way to customize the dashboard, or at least be able to tag pipelines so I can filter through them.

Hi Hosh,

We find a way of adding them, for instance, using graphQL:

mutation pipelineUpdate  ($id: ID!) {
  pipelineUpdate(input: { 
    id: $id,
    tags: {label: "yourTag"}
  }) {
    pipeline {
      name
      id
      tags {
        label
      }
    }
  }
}

Doc related: