Skip to content

Commit

Permalink
fix: 🐛 add missing await in gitlab createProjectMirror
Browse files Browse the repository at this point in the history
  • Loading branch information
clairenollet committed Nov 13, 2023
1 parent dd05757 commit f1bf907
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/server/src/plugins/core/gitlab/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const createProjectMirror = async (internalRepoName, group, organization)
namespaceId: groupId,
},
)
api.Commits.create(project.id, 'main', 'ci: :construction_worker: first mirror', mirrorFirstActions)
await api.Commits.create(project.id, 'main', 'ci: :construction_worker: first mirror', mirrorFirstActions)
return project
}

Expand Down

0 comments on commit f1bf907

Please sign in to comment.