From 9694b48defb548ca484007ec08aa087245564d9c Mon Sep 17 00:00:00 2001 From: gnbm Date: Tue, 18 Nov 2025 15:55:45 +0000 Subject: [PATCH] Set "dev" as the default choice and removed "nightly" from manual trigger --- .github/workflows/release-orchestrator.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-orchestrator.yml b/.github/workflows/release-orchestrator.yml index 860cce312cb..2c41ed516f9 100644 --- a/.github/workflows/release-orchestrator.yml +++ b/.github/workflows/release-orchestrator.yml @@ -11,10 +11,9 @@ on: description: 'Which Ionic release workflow should run?' required: true type: choice - default: nightly + default: dev options: - dev - - nightly - production version: description: 'Which version should be published? (Only for production releases)' @@ -54,7 +53,7 @@ permissions: jobs: run-nightly: - if: ${{ github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && inputs.release-type == 'nightly') }} + if: ${{ github.event_name == 'schedule' }} permissions: contents: read id-token: write