[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
const (
Build StageType = "Build"
Deploy StageType = "Deploy"
Build StageType = "CI"
Deploy StageType = "Deployment"
Approval StageType = "Approval"
Security StageType = "Security"
Security StageType = "SecurityTests"
Pipeline StageType = "Pipeline"
Custom StageType = "Custom"
Infrastructure StageType = "IACM"