Skip to content

Commit f22b631

Browse files
committed
reverse the array of upcoming changes so the most recent appear first
1 parent 8b3adc6 commit f22b631

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/graphql/utils/process-upcoming-changes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ module.exports = async function processUpcomingChanges (upcomingChangesYml) {
1111
change.description = await renderContent(change.description)
1212
}
1313

14-
return groupBy(upcomingChanges, 'date')
14+
return groupBy(upcomingChanges.reverse(), 'date')
1515
}

0 commit comments

Comments
 (0)