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