Implementing a robust CI/CD process
We just have one more thing to do before we can start the pipeline stack. We need to update the pipeline source to use the forked repo. Go to infrastructure/lib/constructs/Pipeline/index.ts
and then scroll down to line 190, where you will find this code:
this.pipeline.addStage({ stageName: 'Source', actions: [ new GitHubSourceAction({ actionName: 'Source', owner: <your_github_user>, repo: <the_repository_name>, branch: `${branch}`, oauthToken: secretToken, output: outputSource, trigger: GitHubTrigger.WEBHOOK, }), ], });
Make sure to update the values for the owner
and repo
properties to...