Skip to content

Instantly share code, notes, and snippets.

@jayco
Created May 25, 2020 03:07
Show Gist options
  • Select an option

  • Save jayco/8e7e8dd6065495579d479d34a274c973 to your computer and use it in GitHub Desktop.

Select an option

Save jayco/8e7e8dd6065495579d479d34a274c973 to your computer and use it in GitHub Desktop.
Pull the process signal information for a job
query {
job(uuid: <JOB-UUID>) {
...on JobTypeCommand {
events(first:100) {
edges {
node {
...on JobEventFinished {
exitStatus
signal
signalReason
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment