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:
parent
dd83bef7d3
commit
955fb868fd
1 changed files with 0 additions and 1 deletions
1
.github/workflows/deploy.yml
vendored
1
.github/workflows/deploy.yml
vendored
|
|
@ -5,7 +5,6 @@ on:
|
|||
workflows: ["Tests"]
|
||||
types:
|
||||
- completed
|
||||
branches: [ "*" ]
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue