mirror of
https://gitea.com/Lydanne/issues-helper.git
synced 2025-08-20 02:35:58 +08:00
fix: adjust core
This commit is contained in:
@@ -210,7 +210,7 @@ export async function doFindComments() {
|
||||
if (direction === 'desc') {
|
||||
comments.reverse();
|
||||
}
|
||||
core.setOutput('comments', comments);
|
||||
core.setOutput('comments', JSON.stringify(comments));
|
||||
core.info(`[doFindComments] comments --> ${JSON.stringify(comments)}`);
|
||||
} else {
|
||||
core.info(`[doFindComments] Query comments empty!`);
|
||||
@@ -244,7 +244,7 @@ export async function doFindIssues() {
|
||||
} else {
|
||||
core.info(`[doFindIssues] Query issues empty!`);
|
||||
}
|
||||
core.setOutput('issues', issues);
|
||||
core.setOutput('issues', JSON.stringify(issues));
|
||||
}
|
||||
|
||||
export async function doLockIssues(body: string, emoji?: string) {
|
||||
|
Reference in New Issue
Block a user