fix: reverse transition commit order to push oldest-first
This commit is contained in:
parent
53525b9b52
commit
718a2267ce
1 changed files with 1 additions and 1 deletions
|
|
@ -177,7 +177,7 @@ export class PushCommand extends CLICommand {
|
||||||
}
|
}
|
||||||
const relevantCommits = allCommits.filter(c =>
|
const relevantCommits = allCommits.filter(c =>
|
||||||
parseTodoTransition(c.subject) !== null
|
parseTodoTransition(c.subject) !== null
|
||||||
)
|
).reverse()
|
||||||
|
|
||||||
if (relevantCommits.length === 0) {
|
if (relevantCommits.length === 0) {
|
||||||
console.log("No transitions to push")
|
console.log("No transitions to push")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue