From 068fe4a9b69ebb0769c4afeb6aa2bb60479ed14f Mon Sep 17 00:00:00 2001 From: torlando-tech Date: Fri, 7 Nov 2025 23:54:31 -0500 Subject: [PATCH] fix(ci): Remove branches filter from workflow_run trigger MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The branches filter in workflow_run triggers can cause workflow validation errors: "The workflow must contain at least one job with no dependencies." According to GitHub Actions documentation, the branches/branches-ignore filters are not well-supported in workflow_run triggers and can cause validation issues. Removed the branches filter - the workflow will now trigger when the "Tests" workflow completes on any branch, which is the intended behavior. Fixes workflow validation error on Line 11, Col 3. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/deploy.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8e26ffc..7acb6e9 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -5,7 +5,6 @@ on: workflows: ["Tests"] types: - completed - branches: [ "*" ] jobs: deploy: