chore: adjust CI to run on all PRs#1244
Conversation
|
WalkthroughThe CI workflow's pull_request trigger was broadened by removing the branches filter, so it runs for all pull requests instead of only those targeting specific branches. No other workflow logic changes were introduced. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant Dev as Developer
participant GH as GitHub
participant CI as CI Workflow
rect rgb(240,248,255)
note over GH,CI: Previous behavior (filtered)
Dev->>GH: Open/Update PR (branch not in filter)
GH--xCI: pull_request event not matched
end
rect rgb(235,255,235)
note over GH,CI: New behavior (unfiltered)
Dev->>GH: Open/Update PR (any branch)
GH-->>CI: Trigger CI on pull_request
CI->>CI: Run jobs as defined
end
Estimated code review effort🎯 2 (Simple) | ⏱️ ~5 minutes Suggested reviewers
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests
📜 Recent review detailsConfiguration used: Path: .coderabbit.yaml Review profile: ASSERTIVE Plan: Pro 📒 Files selected for processing (1)
💤 Files with no reviewable changes (1)
Comment |
35ba703 to
111e69a
Compare
What type of PR is this?
Description
Related Issues
How to Test This
# Example commands or stepsExpected result:
Contributor Checklist
npm run changesetnpm testnpm run format-check(ornpm run formatto fix)Changelog Entry
For Maintainers
Summary by CodeRabbit