Skip to content

Commit 0ecb7ef

Browse files
committed
feat(providers): improve squadcast provider capabilities
1 parent bab1054 commit 0ecb7ef

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

keep/providers/squadcast_provider/squadcast_provider.py

+4
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ def _create_incidents(
114114
headers: dict,
115115
message: str,
116116
description: str,
117+
tags: dict = {},
117118
priority: str = "",
118119
status: str = "",
119120
event_id: str = "",
@@ -123,6 +124,7 @@ def _create_incidents(
123124
{
124125
"message": message,
125126
"description": description,
127+
"tags": tags,
126128
"priority": priority,
127129
"status": status,
128130
"event_id": event_id,
@@ -153,6 +155,7 @@ def _notify(
153155
description: str = "",
154156
incident_id: str = "",
155157
priority: str = "",
158+
tags: dict = {},
156159
status: str = "",
157160
event_id: str = "",
158161
attachments: list = [],
@@ -187,6 +190,7 @@ def _notify(
187190
headers=headers,
188191
message=message,
189192
description=description,
193+
tags=tags,
190194
priority=priority,
191195
status=status,
192196
event_id=event_id,

0 commit comments

Comments
 (0)