mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
23 lines
791 B
JavaScript
23 lines
791 B
JavaScript
#!/usr/bin/env -S node --import tsx
|
|
// Plugin Clawhub Release Plan script supports OpenClaw repository automation.
|
|
|
|
import { pathToFileURL } from "node:url";
|
|
import {
|
|
collectPluginClawHubReleasePlan,
|
|
parsePluginReleaseArgs,
|
|
} from "./lib/plugin-clawhub-release.ts";
|
|
|
|
export async function collectPluginReleasePlanForClawHub(argv: string[]) {
|
|
const { selection, selectionMode, baseRef, headRef } = parsePluginReleaseArgs(argv);
|
|
return await collectPluginClawHubReleasePlan({
|
|
selection,
|
|
selectionMode,
|
|
gitRange: baseRef && headRef ? { baseRef, headRef } : undefined,
|
|
});
|
|
}
|
|
|
|
if (import.meta.url === pathToFileURL(process.argv[1] ?? "").href) {
|
|
const plan = await collectPluginReleasePlanForClawHub(process.argv.slice(2));
|
|
console.log(JSON.stringify(plan, null, 2));
|
|
}
|