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

Co-authored-by: parkerbxyz <17183625+parkerbxyz@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-18 20:32:46 +00:00
parent 8204e76db8
commit 37f42c53d0
8 changed files with 80 additions and 25 deletions
+4 -1
View File
@@ -23307,7 +23307,10 @@ if (!process.env.GITHUB_REPOSITORY_OWNER) {
}
async function run() {
ensureNativeProxySupport();
const appId = getInput("app-id");
const appId = getInput("client-id") || getInput("app-id");
if (!appId) {
throw new Error("Either 'client-id' or 'app-id' input must be set");
}
const privateKey = getInput("private-key");
const owner = getInput("owner");
const repositories = getInput("repositories").split(/[\n,]+/).map((s) => s.trim()).filter((x) => x !== "");