Skip to content

Instantly share code, notes, and snippets.

@xuzhenglun
Created November 2, 2016 06:54
Show Gist options
  • Save xuzhenglun/0bbe38811f68a1ae1846ce5178a71923 to your computer and use it in GitHub Desktop.
Save xuzhenglun/0bbe38811f68a1ae1846ce5178a71923 to your computer and use it in GitHub Desktop.
{
pipeline(id: "ad861716-e357-4413-9352-8e815d35e9db") {
id
name
stages {
id
name
apps {
... on App_Status {
auto_deploy_branch
is_enable_auto_deploy
is_wait_CI_before_deploy
}
... on App {
app_id
}
}
}
}
}
{
"data": {
"pipeline": {
"id": "ad861716-e357-4413-9352-8e815d35e9db",
"name": "2048",
"stages": [
{
"id": "development",
"name": "Development",
"apps": [
{
"auto_deploy_branch": ".*",
"is_enable_auto_deploy": true,
"is_wait_CI_before_deploy": false
},
{
"auto_deploy_branch": "master",
"is_enable_auto_deploy": true,
"is_wait_CI_before_deploy": true
}
]
},
{
"id": "staging",
"name": "Staging",
"apps": []
},
{
"id": "production",
"name": "Production",
"apps": []
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment