File tree Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change 2626 # CodeBuildPhaseTypeSubmitted CodeBuildPhaseType = "SUBMITTED"
2727 # ^
2828 - events/codebuild.go
29-
30- # FIXME
31- # events/codedeploy.go:16:2: SA9004: only the first constant in this group has an explicit type (staticcheck)
32- # CodeDeployDeploymentStateFailure CodeDeployDeploymentState = "FAILURE"
33- # ^
34- - events/codedeploy.go
Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ type CodeDeployDeploymentState string
1414
1515const (
1616 CodeDeployDeploymentStateFailure CodeDeployDeploymentState = "FAILURE"
17- CodeDeployDeploymentStateReady = "READY"
18- CodeDeployDeploymentStateStart = "START"
19- CodeDeployDeploymentStateStop = "STOP"
20- CodeDeployDeploymentStateSuccess = "SUCCESS"
17+ CodeDeployDeploymentStateReady CodeDeployDeploymentState = "READY"
18+ CodeDeployDeploymentStateStart CodeDeployDeploymentState = "START"
19+ CodeDeployDeploymentStateStop CodeDeployDeploymentState = "STOP"
20+ CodeDeployDeploymentStateSuccess CodeDeployDeploymentState = "SUCCESS"
2121)
2222
2323// CodeDeployEvent is documented at:
You can’t perform that action at this time.
0 commit comments