Run the build

This commit is contained in:
Adrian Kashivskyy
2022-06-22 16:26:05 +02:00
parent 94b35fc3df
commit a1e8057254
4 changed files with 5 additions and 5 deletions

View File

@@ -42,7 +42,7 @@ export async function addToProject(): Promise<void> {
const octokit = github.getOctokit(ghToken)
const urlMatch = projectUrl.match(urlParse)
const issue = github.context.payload.issue ?? github.context.payload.pull_request
const issueLabels: string[] = (issue?.labels ?? []).map((l: { name: string }) => l.name.toLowerCase())
const issueLabels: string[] = (issue?.labels ?? []).map((l: {name: string}) => l.name.toLowerCase())
// Ensure the issue matches our `labeled` filter based on the label-operator.
if (labelOperator === 'and') {