Resolved with the following snippet
this.messageActionsService.customActions$.next([
{
actionName: 'forward',
actionLabelOrTranslationKey: 'Forward',
isVisible: this.isVisible,
actionHandler: this.actionHandler,
},
]);
isVisible() {
return true;
}
actionHandler() {
/* eslint-disable-next-line no-console */
console.log('forwarded');
}