chore: update branch filters in workflow files to include v1.x#6906
chore: update branch filters in workflow files to include v1.x#6906chenjiahan merged 1 commit intov1.xfrom
Conversation
|
Note Gemini is unable to generate a summary for this pull request due to the file types involved not being currently supported. |
✅ Deploy Preview for rsbuild ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
There was a problem hiding this comment.
Pull request overview
This PR updates GitHub Actions workflow triggers to include the v1.x branch alongside main, enabling CI/CD workflows to run for both branches. This is a standard configuration change to support a versioned release branch.
- Updated branch filters in test.yml and lint.yml workflows to include
v1.x - Changes apply to both
pull_requestandpushtriggers
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/test.yml | Added v1.x to branch filters for pull_request and push triggers |
| .github/workflows/lint.yml | Added v1.x to branch filters for pull_request and push triggers |
The changes are syntactically correct and consistently applied across both workflow files. The YAML syntax follows the proper GitHub Actions format, and the modifications will ensure that both test and lint workflows are triggered for pull requests and pushes to the v1.x branch in addition to main.
Note: The ecosystem-ci.yml workflow file also has a push trigger with branches: ['main'] that may need similar updates for consistency, but this is outside the scope of the current PR.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Summary
Updated the
branchestrigger to include bothmainandv1.xChecklist