Skip to content

Commit 2786e54

Browse files
committed
[skip-ci] Published 1.9.6
1 parent 30fcd38 commit 2786e54

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

dist/blog-post-workflow.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30881,9 +30881,12 @@ for (const siteUrl of feedList) {
3088130881
}
3088230882
if (ITEM_EXEC) {
3088330883
try {
30884-
post = new Function("post", `${ITEM_EXEC};return post;`)(
30885-
post
30886-
);
30884+
post = new Function(
30885+
"post",
30886+
"customTags",
30887+
"item",
30888+
`${ITEM_EXEC};return post;`
30889+
)(post, customTags, item);
3088730890
} catch (e) {
3088830891
error("Failure in executing `item_exec` parameter");
3088930892
error(e);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "blog-post-workflow",
3-
"version": "1.9.5",
3+
"version": "1.9.6",
44
"description": "Allows you to show your latest blog posts on your github profile or project readme",
55
"main": "blog-post-workflow.js",
66
"type": "module",

0 commit comments

Comments
 (0)