Skip to content

Commit 0b44811

Browse files
committed
Change gren config file for output of issues
1 parent 5879193 commit 0b44811

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.grenrc.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,13 @@ module.exports = {
44
"wontfix",
55
"invalid",
66
"help wanted"
7-
]
7+
],
8+
"template": {
9+
issue: ({ text, name, url, labels }) => {
10+
labels = labels.slice(0, -1);
11+
12+
return `- [${text}](${url}) ${name} - ${labels}`;
13+
},
14+
"label": "_{{label}}_,"
15+
}
816
}

0 commit comments

Comments
 (0)