Skip to content

Instantly share code, notes, and snippets.

@yob
Created January 28, 2021 12:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yob/ba81bf243014204244869ac63461d8d9 to your computer and use it in GitHub Desktop.
Save yob/ba81bf243014204244869ac63461d8d9 to your computer and use it in GitHub Desktop.
buildkite graphql query to filter org pipelines by repo URL
query PipelinesByRepoQuery {
organization(slug: "yob-opensource") {
pipelines(first:1, repository:{url:"https://github.com/yob/pdf-reader.git"}) {
edges {
node {
name
repository {
url
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment