fix(ci): Remove branches filter from workflow_run trigger

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 <noreply@anthropic.com>
This commit is contained in:
torlando-tech 2025-11-07 23:54:31 -05:00
commit 955fb868fd

View file

@ -5,7 +5,6 @@ on:
workflows: ["Tests"]
types:
- completed
branches: [ "*" ]
jobs:
deploy: