-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Azure DevOps git push event (#181)
Added Azure DevOps code pushed event based on following definition: https://learn.microsoft.com/en-us/azure/devops/service-hooks/events?view=azure-devops#code-pushed
- Loading branch information
Showing
4 changed files
with
134 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
{ | ||
"id": "03c164c2-8912-4d5e-8009-3707d5f83734", | ||
"eventType": "git.push", | ||
"publisherId": "tfs", | ||
"scope": "all", | ||
"message": { | ||
"text": "Jamal Hartnett pushed updates to branch master of repository Fabrikam-Fiber-Git.", | ||
"html": "Jamal Hartnett pushed updates to branch master of repository Fabrikam-Fiber-Git.", | ||
"markdown": "Jamal Hartnett pushed updates to branch `master` of repository `Fabrikam-Fiber-Git`." | ||
}, | ||
"detailedMessage": { | ||
"text": "Jamal Hartnett pushed 1 commit to branch master of repository Fabrikam-Fiber-Git.\n - Fixed bug in web.config file 33b55f7c", | ||
"html": "Jamal Hartnett pushed 1 commit to branch <a href=\"https://dev.azure.com/fabrikam-fiber-inc/DefaultCollection/_git/Fabrikam-Fiber-Git/#version=GBmaster\">master</a> of repository <a href=\"https://dev.azure.com/fabrikam-fiber-inc/DefaultCollection/_git/Fabrikam-Fiber-Git/\">Fabrikam-Fiber-Git</a>.\n<ul>\n<li>Fixed bug in web.config file <a href=\"https://dev.azure.com/fabrikam-fiber-inc/DefaultCollection/_git/Fabrikam-Fiber-Git/commit/33b55f7cb7e7e245323987634f960cf4a6e6bc74\">33b55f7c</a>\n</ul>", | ||
"markdown": "Jamal Hartnett pushed 1 commit to branch [master](https://dev.azure.com/fabrikam-fiber-inc/DefaultCollection/_git/Fabrikam-Fiber-Git/#version=GBmaster) of repository [Fabrikam-Fiber-Git](https://dev.azure.com/fabrikam-fiber-inc/DefaultCollection/_git/Fabrikam-Fiber-Git/).\n* Fixed bug in web.config file [33b55f7c](https://dev.azure.com/fabrikam-fiber-inc/DefaultCollection/_git/Fabrikam-Fiber-Git/commit/33b55f7cb7e7e245323987634f960cf4a6e6bc74)" | ||
}, | ||
"resource": { | ||
"commits": [ | ||
{ | ||
"commitId": "33b55f7cb7e7e245323987634f960cf4a6e6bc74", | ||
"author": { | ||
"name": "Jamal Hartnett", | ||
"email": "[email protected]", | ||
"date": "2015-02-25T19:01:00Z" | ||
}, | ||
"committer": { | ||
"name": "Jamal Hartnett", | ||
"email": "[email protected]", | ||
"date": "2015-02-25T19:01:00Z" | ||
}, | ||
"comment": "Fixed bug in web.config file", | ||
"url": "https://dev.azure.com/fabrikam-fiber-inc/DefaultCollection/_git/Fabrikam-Fiber-Git/commit/33b55f7cb7e7e245323987634f960cf4a6e6bc74" | ||
} | ||
], | ||
"refUpdates": [ | ||
{ | ||
"name": "refs/heads/main", | ||
"oldObjectId": "aad331d8d3b131fa9ae03cf5e53965b51942618a", | ||
"newObjectId": "33b55f7cb7e7e245323987634f960cf4a6e6bc74" | ||
} | ||
], | ||
"repository": { | ||
"id": "278d5cd2-584d-4b63-824a-2ba458937249", | ||
"name": "Fabrikam-Fiber-Git", | ||
"url": "https://dev.azure.com/fabrikam-fiber-inc/DefaultCollection/_apis/repos/git/repositories/278d5cd2-584d-4b63-824a-2ba458937249", | ||
"project": { | ||
"id": "6ce954b1-ce1f-45d1-b94d-e6bf2464ba2c", | ||
"name": "Fabrikam-Fiber-Git", | ||
"url": "https://dev.azure.com/fabrikam-fiber-inc/DefaultCollection/_apis/projects/6ce954b1-ce1f-45d1-b94d-e6bf2464ba2c", | ||
"state": "wellFormed" | ||
}, | ||
"defaultBranch": "refs/heads/main", | ||
"remoteUrl": "https://dev.azure.com/fabrikam-fiber-inc/DefaultCollection/_git/Fabrikam-Fiber-Git" | ||
}, | ||
"pushedBy": { | ||
"id": "[email protected]", | ||
"displayName": "Jamal Hartnett", | ||
"uniqueName": "Windows Live ID\\[email protected]" | ||
}, | ||
"pushId": 14, | ||
"date": "2014-05-02T19:17:13.3309587Z", | ||
"url": "https://dev.azure.com/fabrikam-fiber-inc/DefaultCollection/_apis/repos/git/repositories/278d5cd2-584d-4b63-824a-2ba458937249/pushes/14" | ||
}, | ||
"resourceVersion": "1.0", | ||
"resourceContainers": { | ||
"collection": { | ||
"id": "c12d0eb8-e382-443b-9f9c-c52cba5014c2" | ||
}, | ||
"account": { | ||
"id": "f844ec47-a9db-4511-8281-8b63f4eaf94e" | ||
}, | ||
"project": { | ||
"id": "be9b3917-87e6-42a4-a549-2bc06a7a878f" | ||
} | ||
}, | ||
"createdDate": "2016-09-19T13:03:27.0379153Z" | ||
} |