Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,3 @@ run:
# CodeBuildPhaseTypeSubmitted CodeBuildPhaseType = "SUBMITTED"
# ^
- events/codebuild.go

# FIXME
# events/codedeploy.go:16:2: SA9004: only the first constant in this group has an explicit type (staticcheck)
# CodeDeployDeploymentStateFailure CodeDeployDeploymentState = "FAILURE"
# ^
- events/codedeploy.go
8 changes: 4 additions & 4 deletions events/codedeploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ type CodeDeployDeploymentState string

const (
CodeDeployDeploymentStateFailure CodeDeployDeploymentState = "FAILURE"
CodeDeployDeploymentStateReady = "READY"
CodeDeployDeploymentStateStart = "START"
CodeDeployDeploymentStateStop = "STOP"
CodeDeployDeploymentStateSuccess = "SUCCESS"
CodeDeployDeploymentStateReady CodeDeployDeploymentState = "READY"
CodeDeployDeploymentStateStart CodeDeployDeploymentState = "START"
CodeDeployDeploymentStateStop CodeDeployDeploymentState = "STOP"
CodeDeployDeploymentStateSuccess CodeDeployDeploymentState = "SUCCESS"
)

// CodeDeployEvent is documented at:
Expand Down