From b7b44015c412f3eb92fa17a2f60c4bbfc5191758 Mon Sep 17 00:00:00 2001 From: blam Date: Thu, 20 Jan 2022 08:34:49 +0100 Subject: [PATCH] chore: missed the async function here Signed-off-by: blam --- scripts/goalie-labels.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/goalie-labels.js b/scripts/goalie-labels.js index abcb3eb69c..c41920529c 100644 --- a/scripts/goalie-labels.js +++ b/scripts/goalie-labels.js @@ -16,7 +16,7 @@ const Codeowners = require('codeowners'); -const getRepoEvents = ({ github, context, pull_number }) => { +const getRepoEvents = async ({ github, context, pull_number }) => { const commits = await github.paginate(github.rest.pulls.listCommits, { owner: context.repo.owner, repo: context.repo.repo,