Skip to content

Commit 566d90a

Browse files
authored
Add missing await (#154)
1 parent daa76c9 commit 566d90a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runWithOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export async function runWithOptions(options: BackportOptions) {
3535
});
3636

3737
if (backportSucceeded && options.backportCreatedLabels.length > 0) {
38-
Promise.all(
38+
await Promise.all(
3939
commits.map(async ({ pullNumber }) => {
4040
if (pullNumber) {
4141
return withSpinner(

0 commit comments

Comments
 (0)