chore(build): automated change
This commit is contained in:
committed by
github-actions[bot]
parent
be03642151
commit
868ad3ad89
4
dist/index.js
vendored
4
dist/index.js
vendored
@@ -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
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user