mirror of
https://github.com/servo/servo
synced 2026-05-09 08:32:31 +02:00
Iterate PR commits in reverse (oldest->newest) when preparing WPT export. (#34567)
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
This commit is contained in:
@@ -105,7 +105,9 @@ class CreateOrUpdateBranchForPRStep(Step):
|
||||
).splitlines()
|
||||
|
||||
filtered_commits = []
|
||||
for sha in commit_shas:
|
||||
# We must iterate the commits in reverse to ensure we apply older changes first,
|
||||
# in case later commits would conflict.
|
||||
for sha in reversed(commit_shas):
|
||||
# Specifying the path here does a few things. First, it excludes any
|
||||
# changes that do not touch WPT files at all. Secondly, when a file is
|
||||
# moved in or out of the WPT directory the filename which is outside the
|
||||
|
||||
Reference in New Issue
Block a user