mirror of
https://github.com/moghtech/komodo.git
synced 2026-07-15 22:32:44 -05:00
[GH-ISSUE #681] When an action is executed, no alert is sent. #25311
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Razdnut on GitHub (Jul 24, 2025).
Original GitHub issue: https://github.com/moghtech/komodo/issues/681
I set two Actions to be executed at set times, and they were indeed executed.
However, although I set an alert to be sent, it did not go off.
Details
@mbecker20 commented on GitHub (Jul 24, 2025):
What is your alerter configuration?
@Razdnut commented on GitHub (Jul 24, 2025):
For now I have bypassed the problem by creating a function that performs a POST directly to NTFY in the Actions:
Details
@mbecker20 commented on GitHub (Jul 25, 2025):
Ok I see this issue. Your alerter is missing the "ActionFailed" alert type. You didn't miss it though, this option was forgotten to be added to the UI configuration. I already fixed it here:
6c3b7cc30bThis will be included in the next release. In the meantime it looks like you are trying to add all alert types. If this is what you want, you can remove every entry in the "Alert types" list. If it is empty, it will allow through all alert types, including "ActionFailed".
If you prefer to keep enumerated list of specific alert types including "ActionFailed", you can also fix it now by adding "ActionFailed" to resource toml for the [alerter] above, and using Resource Sync.
@mbecker20 commented on GitHub (Jul 25, 2025):
Just reread, actually the Alert Type you want is "ScheduleRun". For some reason I thought it was "ActionFailed". But I think you will want both added anyways. Maybe "ProcedureFailed" too. These three were all missing to configure from UI but it will be fixed in next release.