fix: reverse transition commit order to push oldest-first

This commit is contained in:
Tiara Rodney 2026-03-20 19:59:28 +01:00
parent 53525b9b52
commit 718a2267ce
No known key found for this signature in database
GPG key ID: 5CD8EC1D46106723

View file

@ -177,7 +177,7 @@ export class PushCommand extends CLICommand {
}
const relevantCommits = allCommits.filter(c =>
parseTodoTransition(c.subject) !== null
)
).reverse()
if (relevantCommits.length === 0) {
console.log("No transitions to push")