When a Knowledge Article is moved from Draft to Review, the Approvals get assigned to the right people, but no email notification goes out to them.DescriptionWhen moving a knowledge article from Draft to Review state, the Approvals get assigned to the right people, but no email notification goes out to them. It seems an event is getting created from it moving to Review called kb_knowledge.approval.inserted, and there's a notification with a condition for an event to be fired/triggered, and that event is called approval.inserted. The notification is not fired because the OOB code that validates current.document_id.workflow_state == 'draft'. It will not send an email even when you have glide.knowman.enable_approval_notification to true. That is because there is an additional validation that does not match the KBs as they are under review state. As the OOB demo workflow and the notification engine run at the same time, the change of KB status may affect notification conditions randomly.Steps to Reproduce Create a knowledge articleMove the Knowledge article from Draft to Review stateCheck to see if email notifications were fired. (You will see that they were not) In Jakarta email notification is fired.WorkaroundCreate a custom notification based on KM: Approve article for publishing and remove the advanced condition answer = new KBCommon().canNotify(current); That means that the customer can disable the OOB notification, mimic the approval.inserted event and/or create a similar notification.Related Problem: PRB1245558