This commit is contained in:
v-amolpatil 2023-09-08 14:30:42 +05:30
Родитель 16eead2c7e
Коммит d310f6a68e
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -71,7 +71,6 @@ jobs:
$token = $githubToken | ConvertTo-SecureString -AsPlainText -Force
$pullRequestNumberInt = [int]$pullRequestNumber
$client_payload = @{
"command" = "ping"
"pullRequestBranchName" = "$branchName"
"pullRequestNumber" = $pullRequestNumberInt
}
@ -86,7 +85,7 @@ jobs:
$Parameters = @{
Method = "POST"
Uri = "https://api.github.com/repos/Azure/Azure-Sentinel/dispatches"
Headers = $Header
Headers = $header
ContentType = "application/json"
Body = $jsonBody
Authentication = "Bearer"