Skip to content

Commit

Permalink
Ensure that existing GitHub deployments do not become inactive (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mitch528 authored Mar 9, 2023
1 parent 0fc25c3 commit 1631a14
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22126,7 +22126,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 }) => {
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ try {
log_url: `https://dash.cloudflare.com/${accountId}/pages/view/${projectName}/${deploymentId}`,
description: "Cloudflare Pages",
state: "success",
auto_inactive: false
});
};

Expand Down

0 comments on commit 1631a14

Please sign in to comment.