[fix]: [ML-575]: Ai Agent Fix stage type enums (#3357)

* Fix stage enums
This commit is contained in:
Yogesh Chauhan 2025-01-30 14:55:22 +00:00 committed by Harness
parent 6b231495c1
commit 2130f7f9a4

View File

@ -17,10 +17,10 @@ package enum
type StageType string type StageType string
const ( const (
Build StageType = "Build" Build StageType = "CI"
Deploy StageType = "Deploy" Deploy StageType = "Deployment"
Approval StageType = "Approval" Approval StageType = "Approval"
Security StageType = "Security" Security StageType = "SecurityTests"
Pipeline StageType = "Pipeline" Pipeline StageType = "Pipeline"
Custom StageType = "Custom" Custom StageType = "Custom"
Infrastructure StageType = "IACM" Infrastructure StageType = "IACM"