Skip to content

Commit

Permalink
fix(stacks.api): fix doubled owner
Browse files Browse the repository at this point in the history
Signed-off-by: Braden Mars <[email protected]>
  • Loading branch information
BradenM committed Aug 3, 2023
1 parent 0bd9e1e commit 66fcfa0
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions packages/stacks/api/src/gh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,16 +183,8 @@ class GithubCodePipeline {
'helm version',
]

const repoNames = props.repos ?? [
'infrastructure',
'configs',
'crisiscleanup-3-api',
'crisiscleanup-4-web',
]
const repos = repoNames.map((name) => [props.owner, name].join('/'))

new ghpipelines.GitHubActionRole(scope, 'github-action-role', {
repos,
repos: props.repos ?? [],
})

const installCommands = [
Expand Down

0 comments on commit 66fcfa0

Please sign in to comment.