The messages sent via email and webHook include JSON.stringify(o.job.image) but this is redundant information since updatedString also includes the image name. For example, here's a webHook slack message:
Docker image 'rasa/rasa-x:latest' was updated: {"user":"rasa","name":"rasa-x","tag":"latest"}
I'd like to drop the JSON object.
The messages sent via email and webHook include
JSON.stringify(o.job.image)but this is redundant information sinceupdatedStringalso includes the image name. For example, here's a webHook slack message:I'd like to drop the JSON object.