From dd9779c297429e0bfb2164564fb5993199e7bde6 Mon Sep 17 00:00:00 2001 From: Colleen O'Rourke Date: Thu, 20 Nov 2025 11:46:11 -0800 Subject: [PATCH] chore(ACI): Pop actions off of conditions --- .../workflow_engine/endpoints/validators/base/workflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sentry/workflow_engine/endpoints/validators/base/workflow.py b/src/sentry/workflow_engine/endpoints/validators/base/workflow.py index 247cb6a06e4228..3859155b72fe37 100644 --- a/src/sentry/workflow_engine/endpoints/validators/base/workflow.py +++ b/src/sentry/workflow_engine/endpoints/validators/base/workflow.py @@ -43,7 +43,7 @@ def _split_action_and_condition_group( self, action_filter: dict[str, Any] ) -> tuple[ListInputData, InputData]: try: - actions = action_filter["actions"] + actions = action_filter.pop("actions") except KeyError: raise serializers.ValidationError("Missing actions key in action filter")