diff --git a/lib/settings.js b/lib/settings.js
index 20e71167..8d268fc9 100644
--- a/lib/settings.js
+++ b/lib/settings.js
@@ -245,8 +245,8 @@ ${this.results.reduce((x, y) => {
if (y.type === 'ERROR') {
error = true
return `${x}
-
❗ ${y.action.msg} | ${y.plugin} | ${prettify(y.repo)} | ${prettify(y.action.additions)} | ${prettify(y.action.deletions)} | ${prettify(y.action.modifications)} |
`
- } else if (y.action.additions === null && y.action.deletions === null && y.action.modifications === null) {
+
❗ ${y.action?.msg} | ${y.plugin} | ${prettify(y.repo)} | ${prettify(y.action?.additions)} | ${prettify(y.action?.deletions)} | ${prettify(y.action?.modifications)} |
`
+ } else if (y.action?.additions === null && y.action?.deletions === null && y.action?.modifications === null) {
return `${x}`
} else {
if (y.action === undefined) {