import { Build } from "../src/index.ts"; import { token, showMore, cookie } from "./common.ts"; // group: "kevisual", const repo = new Build({ token: token, cookie: cookie }); const main = async () => { const build = await repo.startBuild('cnb', { branch: 'main', env: { }, event: 'api_trigger_sync_to_gitea', config: ``, }); console.log("build", build); } // main()