feat: add client-id input and deprecate app-id

Co-authored-by: parkerbxyz <[email protected]>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-18 20:32:46 +00:00
co-authored by parkerbxyz
parent 8204e76db8
commit 37f42c53d0
8 changed files with 80 additions and 25 deletions
@@ -0,0 +1,14 @@
import { DEFAULT_ENV } from "./main.js";
for (const [key, value] of Object.entries({
...DEFAULT_ENV,
"INPUT_CLIENT-ID": "",
"INPUT_APP-ID": "",
})) {
process.env[key] = value;
}
// Verify `main` exits with an error when neither `client-id` nor `app-id` is set.
const { default: promise } = await import("../main.js");
await promise;
process.exitCode = 0;