|
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. |
Answered by
ohcnkk
Apr 18, 2023
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. |
0 replies
Answer selected by
ohcnkk
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to 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.