6 lines
143 B
TypeScript
6 lines
143 B
TypeScript
import { mergeAndClose } from "./helpers.ts"
|
|
|
|
export async function action(branch: string) {
|
|
await mergeAndClose(branch, { squash: true })
|
|
}
|