Skip to content

Commit c3b11f6

Browse files
committed
[antispam] experimenting (WIP)
1 parent 492b15e commit c3b11f6

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/scripts/antispam.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,15 @@ module.exports = async ({ github, context, core }) => {
245245
await Promise.all(
246246
Testing.cases.map((url) => Testing.getContext({ url, github }))
247247
).then((testing_contexts) => {
248-
console.log("Actors:", testing_contexts.map((context) => context.actor))
248+
console.log(
249+
"Actors:",
250+
testing_contexts.map((context) => {
251+
return {
252+
login: context.user.login,
253+
id: context.user.id
254+
}
255+
})
256+
)
249257
})
250258
;
251259
};

0 commit comments

Comments
 (0)