Skip to content

Commit

Permalink
Fix incorrect brackets in PR automation (#4450)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvkb authored Jun 6, 2024
1 parent bca1b98 commit d3b7ee9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr_automations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -65,7 +65,7 @@ jobs:
`${process.env.GITHUB_WORKSPACE}/{matchArtifact.name}.zip`,
Buffer.from(download.data)
);
);
}
- name: Unzip artifacts
run: |
Expand Down

0 comments on commit d3b7ee9

Please sign in to comment.