From d433fd25c15e67665499bcdbca431056c2c6abeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Mon, 26 Jan 2026 16:46:03 +0100 Subject: [PATCH] :wrench: Run all the jobs if the workflow is launched manually --- .github/workflows/plugins-deploy-packages.yml | 16 ++++++++-------- .../apps/colors-to-tokens-plugin/wrangler.toml | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/plugins-deploy-packages.yml b/.github/workflows/plugins-deploy-packages.yml index b7c9c3af47..3223bc52a6 100644 --- a/.github/workflows/plugins-deploy-packages.yml +++ b/.github/workflows/plugins-deploy-packages.yml @@ -70,7 +70,7 @@ jobs: colors-to-tokens-plugin: needs: detect-changes - if: needs.detect-changes.outputs.colors_to_tokens == 'true' + if: github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.colors_to_tokens == 'true' uses: ./.github/workflows/plugins-deploy-package.yml secrets: inherit with: @@ -79,7 +79,7 @@ jobs: contrast-plugin: needs: detect-changes - if: needs.detect-changes.outputs.contrast == 'true' + if: github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.contrast == 'true' uses: ./.github/workflows/plugins-deploy-package.yml secrets: inherit with: @@ -88,7 +88,7 @@ jobs: create-palette-plugin: needs: detect-changes - if: needs.detect-changes.outputs.create_palette == 'true' + if: github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.create_palette == 'true' uses: ./.github/workflows/plugins-deploy-package.yml secrets: inherit with: @@ -97,7 +97,7 @@ jobs: icons-plugin: needs: detect-changes - if: needs.detect-changes.outputs.icons == 'true' + if: github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.icons == 'true' uses: ./.github/workflows/plugins-deploy-package.yml secrets: inherit with: @@ -106,7 +106,7 @@ jobs: lorem-ipsum-plugin: needs: detect-changes - if: needs.detect-changes.outputs.lorem_ipsum == 'true' + if: github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.lorem_ipsum == 'true' uses: ./.github/workflows/plugins-deploy-package.yml secrets: inherit with: @@ -115,7 +115,7 @@ jobs: rename-layers-plugin: needs: detect-changes - if: needs.detect-changes.outputs.rename_layers == 'true' + if: github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.rename_layers == 'true' uses: ./.github/workflows/plugins-deploy-package.yml secrets: inherit with: @@ -124,7 +124,7 @@ jobs: table-plugin: needs: detect-changes - if: needs.detect-changes.outputs.table == 'true' + if: github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.table == 'true' uses: ./.github/workflows/plugins-deploy-package.yml secrets: inherit with: @@ -135,7 +135,7 @@ jobs: # Add more jobs for other plugins below, following the same pattern # another-plugin: # needs: detect-changes - # if: needs.detect-changes.outputs.another_plugin == 'true' + # if: github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.another_plugin == 'true' # uses: ./.github/workflows/plugins-deploy-package.yml # secrets: inherit # with: diff --git a/plugins/apps/colors-to-tokens-plugin/wrangler.toml b/plugins/apps/colors-to-tokens-plugin/wrangler.toml index c1d45f3e87..7f48730a36 100644 --- a/plugins/apps/colors-to-tokens-plugin/wrangler.toml +++ b/plugins/apps/colors-to-tokens-plugin/wrangler.toml @@ -1,7 +1,7 @@ name = "color-to-tokens-plugin" compatibility_date = "2025-01-01" -assets = { directory = "../../dist/apps/color-to-tokens-plugin/browser" } +assets = { directory = "../../dist/apps/colors-to-tokens-plugin/browser" } [[routes]] pattern = "WORKER_URI"