Skip to content

Instantly share code, notes, and snippets.

@FeodorFitsner
Last active December 7, 2016 19:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save FeodorFitsner/c1056be9152402918874 to your computer and use it in GitHub Desktop.
Save FeodorFitsner/c1056be9152402918874 to your computer and use it in GitHub Desktop.
AppVeyor Git webhook payload
{
"ref":"refs/heads/branch",
"before":"start_commit_sha",
"after":"end_commit_sha",
"commits":[
{
"id":"end_commit_sha",
"author":{
"name":"Author Name",
"email":"author@email.com"
},
"timestamp":"2015-01-15T21:08:38-08:00",
"message":"commit message"
},
{
"id":"start_commit_sha",
"author":{
"name":"Author Name",
"email":"author@email.com"
},
"timestamp":"2015-01-15T21:08:38-08:00",
"message":"commit message"
}
],
"head_commit":{
"id":"end_commit_sha",
"author":{
"name":"Author Name",
"email":"author@email.com"
},
"timestamp":"2015-01-15T21:08:38-08:00",
"message":"commit message"
},
"repository":{
"name":"repo_name"
},
"config":"#appveyor.yml file \n#contents at start_commit_sha \n#revision"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment