Skip to content

Commit

Permalink
ci: fix mapping from file conversion issue (#602)
Browse files Browse the repository at this point in the history
ci: fix mapping from file convertion issue
  • Loading branch information
Seddryck authored Oct 29, 2023
1 parent e680363 commit e4c932d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion github.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ function Set-Pull-Request-Expected-Labels {

if ($config) {
WRite-Host "Reading mapping from $config"
$mapping = (Get-Content $config | ConvertFrom-Json)
$mapping = (Get-Content $config | ConvertFrom-Json -AsHashtable)
} else {
$mapping = @{}
$mapping.Add('!', 'breaking-change')
Expand Down

0 comments on commit e4c932d

Please sign in to comment.