Fix bad input name

This commit is contained in:
lowlighter
2020-11-03 18:28:59 +01:00
parent 24819054c6
commit d471638195
3 changed files with 9 additions and 3 deletions

View File

@@ -1083,7 +1083,7 @@ var E_Users_lecoq_Documents_GitHub_gitstats_node_modules_actions_github_lib_gith
followup:{enabled:bool(core.getInput("plugin_followup"))},
music:{enabled:bool(core.getInput("plugin_music"))},
posts:{enabled:bool(core.getInput("plugin_posts"))},
isocalendar:{enabled:bool(core.getInput("isocalendar"))},
isocalendar:{enabled:bool(core.getInput("plugin_isocalendar"))},
}
let q = Object.fromEntries(Object.entries(plugins).filter(([key, plugin]) => plugin.enabled).map(([key]) => [key, true]))
console.log(`Plugins enabled | ${Object.entries(plugins).filter(([key, plugin]) => plugin.enabled).map(([key]) => key).join(", ")}`)