From c1041dd67440e0899775d8f5a4057fce0bca80cd Mon Sep 17 00:00:00 2001 From: Mitchell Kutchuk Date: Mon, 26 Dec 2022 20:04:12 -0500 Subject: [PATCH] Ensure that existing GitHub deployments do not become inactive --- index.js | 3 ++- src/index.ts | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 10fbcff..4ea1cf9 100644 --- a/index.js +++ b/index.js @@ -22125,7 +22125,8 @@ try { production_environment: productionEnvironment, log_url: `https://dash.cloudflare.com/${accountId}/pages/view/${projectName}/${deploymentId}`, description: "Cloudflare Pages", - state: "success" + state: "success", + auto_inactive: false }); }; const createJobSummary = async ({ deployment, aliasUrl }) => { diff --git a/src/index.ts b/src/index.ts index 511668b..5229441 100644 --- a/src/index.ts +++ b/src/index.ts @@ -89,6 +89,7 @@ try { log_url: `https://dash.cloudflare.com/${accountId}/pages/view/${projectName}/${deploymentId}`, description: "Cloudflare Pages", state: "success", + auto_inactive: false }); };