Skip to content

Commit 21786f2

Browse files
committed
fmt
1 parent 5d86305 commit 21786f2

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/entities/Environment.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ export interface Environment {
77
organization_id: string;
88
workspace_id: string;
99
name: string;
10-
}
10+
}

src/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,8 @@ export async function run(enableFailureExitCodes = true): Promise<void> {
183183
return; // exit
184184
}
185185

186-
const effectiveWorkspaceId = appOrEnv.workspace_id ?? appOrEnv.organization_id;
186+
const effectiveWorkspaceId =
187+
appOrEnv.workspace_id ?? appOrEnv.organization_id;
187188

188189
const outputLink = `${baseAppUrl}/workspaces/${appOrEnv.organization_id}/events/${deployment.id}`;
189190
core.info(`Deployment triggered. View output at: ${outputLink}`);

0 commit comments

Comments
 (0)