We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bf3b18 commit b00ab86Copy full SHA for b00ab86
src/steps/finish.ts
@@ -8,7 +8,6 @@ export type FinishArgs = {
8
override: boolean;
9
status: string;
10
envURL?: string;
11
- environment?: string;
12
autoInactive: boolean;
13
};
14
@@ -19,7 +18,7 @@ async function createFinish(
19
18
) {
20
const {
21
log,
22
- coreArgs: { description, logsURL, environment },
+ coreArgs: { description, logsURL },
23
} = context;
24
if (stepArgs.override) {
25
await deactivateEnvironment(github, context);
@@ -55,7 +54,6 @@ async function createFinish(
55
54
state: newStatus,
56
description: description,
57
ref: context.ref,
58
- environment: environment,
59
60
// only set environment_url if deployment worked
61
environment_url: newStatus === "success" ? stepArgs.envURL : "",
0 commit comments