Conversation
…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.
|
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 |
… Buster/Bullseye apt-source fix.
|
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 #82784.
What?
Widens
push:branch filters across this branch's GitHub Actions workflows so they trigger correctly on a direct push to this branch.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 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.This supersedes an earlier revision of this same PR, which (following an older version of #82744) had added an explicit
pull_requestbranch allowlist plus a project-local temporary pattern — no longer needed now thatpull_requeststays unfiltered.build-plugin-zip.ymlpush:branch filtertrunk; now also triggers onrelease/X.Y,wp/X.Y,wp/latest, andwp/next, matching upstream #82744.create-block.ymlpush:branch filtertrunk/wp/latest; now also triggers onrelease/X.Y,wp/X.Y, andwp/next, matching upstream #82744.end2end-test.ymlpush:branch filtertrunk,release/X.Y,wp/X.Y,wp/latest, andwp/next, replacing the oldrelease/**/wp/**globs with the precise pattern from upstream #82744.static-checks.ymlpush:branch filtertrunk,release/X.Y,wp/X.Y,wp/latest, andwp/next, replacing the oldrelease/**/wp/**globs with the precise pattern from upstream #82744.unit-test.ymlpush:branch filtertrunk,release/X.Y,wp/X.Y,wp/latest, andwp/next, replacing the oldrelease/**/wp/**globs with the precise pattern from upstream #82744.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.