From d3b7ee9e80791c5d264384bee06ad21cc4fdf2a6 Mon Sep 17 00:00:00 2001 From: Dhruv Bhanushali Date: Thu, 6 Jun 2024 20:16:36 +0300 Subject: [PATCH] Fix incorrect brackets in PR automation (#4450) --- .github/workflows/pr_automations.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr_automations.yml b/.github/workflows/pr_automations.yml index a160a83ff9b..824aece7034 100644 --- a/.github/workflows/pr_automations.yml +++ b/.github/workflows/pr_automations.yml @@ -54,7 +54,7 @@ jobs: let matchArtifacts = allArtifacts.data.artifacts.filter((artifact) => { return ["event_info", "change_info"].includes(artifact.name) }); - for (let matchArtifact of matchArtifacts) + for (let matchArtifact of matchArtifacts) { let download = await github.rest.actions.downloadArtifact({ owner: context.repo.owner, repo: context.repo.repo, @@ -65,7 +65,7 @@ jobs: `${process.env.GITHUB_WORKSPACE}/{matchArtifact.name}.zip`, Buffer.from(download.data) ); - ); + } - name: Unzip artifacts run: |