You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ci(native-pipeline): scope PRs from the base merge-base, not just HEAD~1
The scope job checked out with fetch-depth: 2 and passed github.event.before --
which is empty on pull_request events -- so the script fell back to
`git diff HEAD~1`, scoping a multi-commit PR off only its last commit (widgets
changed in earlier commits were silently dropped from build + test).
Check out full history (fetch-depth: 0) and pass the PR base SHA
(github.event.pull_request.base.sha); the script now diffs against the merge-base
with the base branch, covering every commit in the PR. Kept the per-widget
classifier and the dispatch path unchanged -- no new third-party action needed.
0 commit comments