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

4
dist/index.js vendored
View File

@@ -35946,7 +35946,7 @@ function getIssueOption(body) {
if (core.getInput('issue_labels')) {
labels = core.getInput('issue_labels')
.split(',')
.map(label => label.trim());
.map((label) => label.trim());
}
return {
title: core.getInput('issue_title'),
@@ -35961,7 +35961,7 @@ async function getExistingIssueNumber(getIssues, repo) {
state: 'open'
});
const iss = issues
.filter(i => i.title === core.getInput('issue_title'))
.filter((i) => i.title === core.getInput('issue_title'))
.shift();
return iss?.number ?? null;
}

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

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