Skip to content

Commit

Permalink
fix: Sort packages
Browse files Browse the repository at this point in the history
  • Loading branch information
nlemoine committed Oct 30, 2024
1 parent 8a9a265 commit 549cad2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/composer-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ jobs:
}
async function run(diff) {
const composerDiffPackages = Object.values(diff.packages);
const composerDiffPackages = Object.values(diff.packages).sort((a, b) =>
a.name.startsWith('humanoid/') ? -1 : 1;
);
const markDown = [`# Update summary of ${process.env.NOW}`];
markDown.push(``);
Expand Down

0 comments on commit 549cad2

Please sign in to comment.