From 7c5298f43f1d8719c5aa7652b30c0cc62763670b Mon Sep 17 00:00:00 2001 From: Gabriel Willen <91307534+gabewillen@users.noreply.github.com> Date: Thu, 13 Nov 2025 22:51:20 -0600 Subject: [PATCH 1/2] Update checkout action to use 'main' branch --- .github/workflows/create-release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 7f2dd27..31cca10 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -25,6 +25,7 @@ jobs: - name: Checkout code uses: actions/checkout@v4 with: + ref: main fetch-depth: 0 # Need full history for tag operations - name: Determine version From 28220a0e408c1ec4e0a852983bf5837db1e73281 Mon Sep 17 00:00:00 2001 From: Gabriel Willen <91307534+gabewillen@users.noreply.github.com> Date: Thu, 13 Nov 2025 22:58:25 -0600 Subject: [PATCH 2/2] Remove skip_validation option from release workflow Removed skip_validation input from create-release workflow. --- .github/workflows/create-release.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 31cca10..5f3d9a3 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -7,11 +7,6 @@ on: description: 'Release version (e.g., 0.1.0-alpha.0 or leave empty to use VERSION file)' required: false type: string - skip_validation: - description: 'Skip branch validation (allow releases from non-main branches)' - required: false - type: boolean - default: false permissions: contents: write