chore(build): automated change

This commit is contained in:
oke-py
2025-05-05 06:20:37 +00:00
committed by github-actions[bot]
parent be03642151
commit 868ad3ad89
3 changed files with 5 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ export function getIssueOption(body: string): IssueOption {
labels = core
.getInput('issue_labels')
.split(',')
.map(label => label.trim())
.map((label) => label.trim())
}
return {
@@ -44,7 +44,7 @@ export async function getExistingIssueNumber(
})
const iss = issues
.filter(i => i.title === core.getInput('issue_title'))
.filter((i) => i.title === core.getInput('issue_title'))
.shift()
return iss?.number ?? null