Remove suffix from CICD platform type (#13121)

This commit is contained in:
Devashish 2024-07-25 18:15:56 +05:30 committed by GitHub
parent c7dd5af450
commit 265dfe105a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -41,7 +41,7 @@ func (g *GithubActions) Details() map[string]interface{} {
}
func (g *GithubActions) Type() string {
return "github-actions"
return "github"
}
type GitlabCI struct{}
@ -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{} {