Skip to content

Commit

Permalink
Remove suffix from CICD platform type (#13121)
Browse files Browse the repository at this point in the history
  • Loading branch information
devashish-patel committed Jul 25, 2024
1 parent c7dd5af commit 265dfe1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/hcp/registry/metadata/cicd.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func (g *GithubActions) Details() map[string]interface{} {
}

func (g *GithubActions) Type() string {
return "github-actions"
return "github"
}

type GitlabCI struct{}
Expand Down Expand Up @@ -81,7 +81,7 @@ func (g *GitlabCI) Details() map[string]interface{} {
}

func (g *GitlabCI) Type() string {
return "gitlab-ci"
return "gitlab"
}

func GetCicdMetadata() map[string]interface{} {
Expand Down

0 comments on commit 265dfe1

Please sign in to comment.