From df37debe2863b3d071e7ac356026157ffe0d4e83 Mon Sep 17 00:00:00 2001 From: Samad Yar Khan Date: Fri, 19 Apr 2024 17:37:06 +0530 Subject: [PATCH] Add ALERT type in IncidentType --- apiserver/dora/store/models/incidents/enums.py | 1 + 1 file changed, 1 insertion(+) diff --git a/apiserver/dora/store/models/incidents/enums.py b/apiserver/dora/store/models/incidents/enums.py index 69ffc12c7..932945f8a 100644 --- a/apiserver/dora/store/models/incidents/enums.py +++ b/apiserver/dora/store/models/incidents/enums.py @@ -28,6 +28,7 @@ class IncidentStatus(Enum): class IncidentType(Enum): INCIDENT = "INCIDENT" REVERT_PR = "REVERT_PR" + ALERT = "ALERT" class IncidentBookmarkType(Enum):