Skip to content

Commit b45b0e9

Browse files
committed
update naming convetion
1 parent f4c1608 commit b45b0e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

LambdaRuntimeDockerfiles/Infrastructure/src/Infrastructure/PipelinesStage.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ public PipelinesStage(
1616
{
1717
// Create pipelines for main repository
1818
CreatePipelinesForRepository(configuration,
19-
string.Empty, // cloudformation already prepends the parent stack name which is configuration.ProjectName so we don't need to add it again
19+
configuration.ProjectName,
2020
configuration.GitHubOwner,
2121
configuration.GitHubRepository,
2222
configuration.GitHubBranch);
2323

2424
// Create pipelines for staging repository
2525
CreatePipelinesForRepository(configuration,
26-
"staging", // cloudformation already prepends the parent stack name which is configuration.ProjectName so we just add staging prefix only
26+
$"{configuration.ProjectName}-staging",
2727
configuration.GitHubOwnerStaging,
2828
configuration.GitHubRepositoryStaging,
2929
configuration.GitHubBranchStaging);

0 commit comments

Comments
 (0)