Skip to content

Commit

Permalink
Merge pull request #108 from theohbrothers/fix/remove-invalid-param-i…
Browse files Browse the repository at this point in the history
…n-update-versions.ps1

Fix: Remove invalid param in `Update-Versions.ps1
  • Loading branch information
leojonathanoh authored Sep 22, 2023
2 parents 4305f27 + 9bc8a30 commit ac4f0b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Update-Versions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ try {
}

# Update versions.json, and open PRs with CI disabled
$prs = Update-DockerImageVariantsVersions -VersionsChanged $versionsChanged -CommitPreScriptblock { Move-Item .github .github.disabled -Force } -PR:$PR -WhatIf:$WhatIfPreference
$prs = Update-DockerImageVariantsVersions -CommitPreScriptblock { Move-Item .github .github.disabled -Force } -PR:$PR -WhatIf:$WhatIfPreference
# Update versions.json, update PRs with CI, merge PRs one at a time, release and close milestone
$return = Update-DockerImageVariantsVersions -VersionsChanged $versionsChanged -PR:$PR -AutoMergeQueue:$AutoMergeQueue -AutoRelease:$AutoRelease -AutoReleaseTagConvention $AutoReleaseTagConvention -WhatIf:$WhatIfPreference
$return = Update-DockerImageVariantsVersions -PR:$PR -AutoMergeQueue:$AutoMergeQueue -AutoRelease:$AutoRelease -AutoReleaseTagConvention $AutoReleaseTagConvention -WhatIf:$WhatIfPreference
}catch {
throw
}finally {
Expand Down

0 comments on commit ac4f0b0

Please sign in to comment.