Conversation
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Advanced Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
🟢 Approval recommended
No unresolved review issues were identified.
Pull request overview
Updates GitHub Actions branch filters so workflows trigger correctly for supported wp/* and release/* branches, including wp/7.0.
Changes:
- Replaces broad branch globs with explicit branch patterns.
- Adds
wp/latestandwp/nextpush triggers. - Removes the workflow-lint pull request branch restriction.
File summaries
| File | Description |
|---|---|
.github/workflows/workflow-lint.yml |
Removes the pull request branch filter. |
.github/workflows/unit-test.yml |
Updates push branch filters. |
.github/workflows/static-checks.yml |
Updates push branch filters. |
.github/workflows/end2end-test.yml |
Updates push branch filters. |
.github/workflows/create-block.yml |
Expands supported push branches. |
.github/workflows/build-plugin-zip.yml |
Updates push branch filters. |
Review details
- Files reviewed: 6/6 changed files
- Comments generated: 0
- Review effort level: Lite (auto)
Note
Copilot is running an experiment and ran this review at Lite.
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
006ac0e to
9f86cf8
Compare
1e3f1c3 to
fae6ee0
Compare
fae6ee0 to
55fb597
Compare
…h-triggered tasks (`add-milestone`, `first-time-contributor-account-link`) both bail out immediately outside of `trunk`, so running them here on every push does nothing.
55fb597 to
b24c2be
Compare
|
The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the If you're merging code through a pull request on GitHub, copy and paste the following into the bottom of the merge commit message. To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook. |
Part of #82782.
What?
Widens
push:branch filters across this branch's GitHub Actions workflows so they trigger correctly on a direct push to this branch, and removesworkflow-lint.yml'spull_requestbranch filter entirely.Why?
Ports upstream trunk's open PR #82744 (head commit
3fe3bd4aceb8331161e99d9bfc6a7463c048fcacas of this writing — the PR is still open/unmerged), "Workflows: Refine and complete the push and pull_request branch filters". Per the current version of that upstream PR,pull_request:triggers are deliberately left unfiltered everywhere (so a PR gets the same checks regardless of target branch) exceptworkflow-lint.yml, where a previous trunk-only filter is removed entirely.pull-request-automation.ymlpushtriggerpayload.ref !== 'refs/heads/trunk'and return immediately on this branch, so nothing happens on push here.pull_request_targetis untouched and still does real work (fixed-issue assignment, first-time-contributor labeling) on PRs targeting this branch.Use of AI Tools
This PR was authored with the help of Claude Code.