-
Is it possible to suppress the notifications when sending with My use case is I have cron timer action running every 30 minutes. Workflow will send notification to slack channel if the action is failed but it would keep sending notifications until someone fixed the error. It would be great if the notifications can be suppressed for sudden periods of time. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I think I had a solution. I added two steps in between sending the notification which are getting the key and storing the key with TTL. The first step is skipping the notification if the key is exist. Otherwise it will proceed to next step for storing the key with TTL and then send the notification. |
Beta Was this translation helpful? Give feedback.
I think I had a solution. I added two steps in between sending the notification which are getting the key and storing the key with TTL. The first step is skipping the notification if the key is exist. Otherwise it will proceed to next step for storing the key with TTL and then send the notification.