sandlot/src/commands/squash.ts

6 lines
143 B
TypeScript

import { mergeAndClose } from "./helpers.ts"
export async function action(branch: string) {
await mergeAndClose(branch, { squash: true })
}