From e124f5a97bc6aea8c42e8eea4ba87b8b0d49d938 Mon Sep 17 00:00:00 2001 From: elseif Date: Fri, 4 Sep 2026 16:40:40 +0800 Subject: [PATCH] modified: .github/workflows/main.yml --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 26b5ac5..cf165bf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,7 +6,7 @@ on: workflow_dispatch: inputs: channels: - description: 'JSON array of channels, e.g. ["stable","long-term"]' + description: 'JSON array of channels, e.g. ["stable","long-term","development","testing"]' required: true default: '["stable"]' type: string @@ -221,7 +221,7 @@ jobs: Patch_V6: needs: Prepare_Patch - if: ${{ needs.Prepare_Patch.outputs.patch_v6 == 'true' }} + if: needs.Prepare_Patch.result == 'success' && needs.Prepare_Patch.outputs.patch_v6 == 'true' uses: ./.github/workflows/patch_v6.yml strategy: matrix: @@ -237,7 +237,7 @@ jobs: Patch_V7: needs: Prepare_Patch - if: ${{ needs.Prepare_Patch.outputs.patch_v7 == 'true' }} + if: needs.Prepare_Patch.result == 'success' && needs.Prepare_Patch.outputs.patch_v7 == 'true' uses: ./.github/workflows/patch_v7.yml strategy: matrix: