Skip to content

Commit

Permalink
dalsi update
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanSebranek committed May 2, 2024
1 parent 232a251 commit 297f74d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions Tasks/Manage-AutomationWebHook/Manage-AutomationWebHook.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,11 @@ foreach($def in $definitions)
} else {
Write-Host "Converting parameters to Hashtable..."
$params = @{}
foreach ($param in $setting.Parameters) {
$param.GetEnumerator() | ForEach-Object {
$params[$_.Key] = $_.Value
$setting.Parameters | ForEach-Object {
$params += $_.psobject.properties | ForEach-Object {
@{
$_.Name = $_.Value
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion vss-extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifestVersion": 1,
"id": "Manage-AutomationAccount",
"name": "Manage-AutomationAccount",
"version": "1.9.77",
"version": "1.9.78",
"publisher": "GreyCorbelSolutions",
"targets": [
{
Expand Down

0 comments on commit 297f74d

Please sign in to comment.