From 7595d986809d4a3db96a3bfb46628d2b6017edd5 Mon Sep 17 00:00:00 2001 From: Vigneshwer Vaidyanathan Date: Mon, 17 Mar 2025 20:51:30 -0400 Subject: [PATCH 1/2] Add workflow_dispatch trigger to release.yml --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fcbb0d9..235607e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,4 +1,6 @@ name: Create Release +on: + workflow_dispatch: inputs: type: type: choice From f000f834a15d4bae29d5d5830a866a7ce13ba193 Mon Sep 17 00:00:00 2001 From: Vigneshwer Vaidyanathan Date: Mon, 17 Mar 2025 20:53:54 -0400 Subject: [PATCH 2/2] Add inputs to workflow_dispatch --- .github/workflows/release.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 235607e..b451917 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,14 +1,14 @@ name: Create Release on: workflow_dispatch: -inputs: - type: - type: choice - description: Release Type - options: - - patch - - minor - - major + inputs: + type: + type: choice + description: Release Type + options: + - patch + - minor + - major jobs: createRelease: