From 5b45ae27fe50a63f44580e4ed61402757f86479c Mon Sep 17 00:00:00 2001 From: jeffvli Date: Mon, 3 Nov 2025 00:44:52 -0800 Subject: [PATCH] add automatic update instructions to beta release notes --- .github/workflows/publish-beta.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/publish-beta.yml b/.github/workflows/publish-beta.yml index 1d07bb60..3bcf1ac9 100644 --- a/.github/workflows/publish-beta.yml +++ b/.github/workflows/publish-beta.yml @@ -318,6 +318,10 @@ jobs: $releaseNotes = "## Beta Release`n`nThis is a beta release." } + # Prepend beta update instructions to release notes + $betaInstructions = "To receive automatic beta updates, set the release channel to ``Beta`` under ``Advanced`` settings.`n`n" + $releaseNotes = $betaInstructions + $releaseNotes + # Update the release with new title and notes Write-Host "Updating release with title 'Beta' and new notes..." gh release edit $tagVersion --title "Beta" --notes "$releaseNotes"