Skip to content

Commit 516d3ab

Browse files
committed
Add new plugins params to action
1 parent d297483 commit 516d3ab

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

action/dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

action/index.mjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@
7070
pagespeed:{enabled:bool(core.getInput("plugin_pagespeed"))},
7171
habits:{enabled:bool(core.getInput("plugin_habits"))},
7272
selfskip:{enabled:bool(core.getInput("plugin_selfskip"))},
73+
languages:{enabled:bool(core.getInput("plugin_languages"))},
74+
followup:{enabled:bool(core.getInput("plugin_followup"))},
7375
}
7476
const q = Object.fromEntries(Object.entries(plugins).filter(([key, plugin]) => plugin.enabled).map(([key]) => [key, true]))
7577
console.log(`Plugins enabled | ${Object.entries(plugins).filter(([key, plugin]) => plugin.enabled).map(([key]) => key).join(", ")}`)

0 commit comments

Comments
 (0)