Skip to content

Commit

Permalink
fix :: status 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
HyunSu1768 committed Jul 31, 2024
1 parent f9971cb commit cce04ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ data class DeployHistoryResponse(

data class StageStatus(
val name: String,
val isSuccessful: Boolean
val status: String
)
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class GetContainerDeployHistoryService(
stages = it.stages.map {
StageStatus(
name = it.name,
isSuccessful = it.status == "Passed"
status = it.status
)
}.toList(),
commitMessage = it.buildCause.materialRevisions[0].modifications.get(0).comment
Expand Down

0 comments on commit cce04ac

Please sign in to comment.