Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/Helpers.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function New-TestVM {
[Parameter()]
[string]$Name = "qsg-$((New-Guid).ToString() -replace '-' -replace '^(.{11}).+$', '$1')",

[ValidateSet("Win2022AzureEditionCore", "Win2019Datacenter")]
[ValidateSet("Win2022AzureEditionCore", "2025-datacenter-azure-edition-core")]
[string]$Image = "Win2022AzureEditionCore",

[ArgumentCompleter({
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

images:
description: The Azure images to test on.
default: Win2022AzureEditionCore, Win2019Datacenter
default: Win2022AzureEditionCore, 2025-datacenter-azure-edition-core
type: string

variants:
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
$Trigger = Invoke-RestMethod "$GitHubApi/repos/${{ github.repository }}/collaborators/${{ github.actor }}/permission" @AuthHeaders

if ($Trigger.Permission -in @("admin", "write")) {
$Images = "Win2022AzureEditionCore", "Win2019Datacenter"
$Images = "Win2022AzureEditionCore", "2025-datacenter-azure-edition-core"
$Variants = "self-signed", "single", "wildcard"
} else {
Write-Error "Action was triggered by '${{ github.actor }}', who has '$TriggerPermission': Cancelling build."
Expand Down