Код IT
← Каталог

Справочник по Azure Repos Git — Webhook-события и payload

Фрагмент из «Справочник по Azure Repos Git»: Webhook-события и payload.

json infra-securityencyclopedia8-04-devops-ci-cd-3124 embed URL статья в энциклопедии
JSON main.json
{
  "subscriptionId": "guid",
  "notificationId": 123,
  "id": "repo-id",
  "eventType": "git.push",
  "publisherId": "tfs",
  "message": {
    "text": "Push to main by John Doe"
  },
  "detailedMessage": {
    "text": "3 new commits pushed to main"
  },
  "resource": {
    "commits": [
      {
        "commitId": "a1b2c3d4",
        "author": { "name": "John Doe", "email": "john@contoso.com" },
        "comment": "Fix login bug"
      }
    ],
    "refUpdates": [
      {
        "name": "refs/heads/main",
        "oldObjectId": "old-sha",
        "newObjectId": "new-sha"
      }
    ],
    "repository": {
      "id": "repo-id",
      "name": "MyApp",
      "url": "https://dev.azure.com/org/project/_git/MyApp"
    }
  }
}
{
  "subscriptionId": "guid",
  "notificationId": 123,
  "id": "repo-id",
  "eventType": "git.push",
  "publisherId": "tfs",
  "message": {
    "text": "Push to main by John Doe"
  },
  "detailedMessage": {
    "text": "3 new commits pushed to main"
  },
  "resource": {
    "commits": [
      {
        "commitId": "a1b2c3d4",
        "author": { "name": "John Doe", "email": "john@contoso.com" },
        "comment": "Fix login bug"
      }
    ],
    "refUpdates": [
      {
        "name": "refs/heads/main",
        "oldObjectId": "old-sha",
        "newObjectId": "new-sha"
      }
    ],
    "repository": {
      "id": "repo-id",
      "name": "MyApp",
      "url": "https://dev.azure.com/org/project/_git/MyApp"
    }
  }
}