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:
Josh Matthews 2024-12-11 06:50:40 -05:00 committed by GitHub
parent d7cc988717
commit bc741bdc0b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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