File tree Expand file tree Collapse file tree 4 files changed +26
-288
lines changed
Expand file tree Collapse file tree 4 files changed +26
-288
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Rebase on Upstream
2+ on :
3+ schedule :
4+ - cron : " 0 20 * * *" # run once a day
5+ workflow_dispatch : # run manually
6+
7+ jobs :
8+ sync :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - uses : actions/checkout@v3
12+ with :
13+ fetch-depth : 0
14+
15+ - name : Configure git
16+ run : |
17+ git config user.name "github-actions[bot]"
18+ git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
19+ git remote add upstream https://github.com/awslabs/run-model-context-protocol-servers-with-aws-lambda.git
20+
21+ - name : Sync with upstream
22+ run : |
23+ git fetch upstream
24+ git rebase upstream/main
25+ git push -f
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ export class McpServersPipelineStack extends cdk.Stack {
172172 actions : [
173173 new codepipeline_actions . CodeStarConnectionsSourceAction ( {
174174 actionName : "GitHub_Source" ,
175- owner : "awslabs " , // Update this to your GitHub username/org
175+ owner : "clareliguori " , // Update this to your GitHub username/org
176176 repo : "run-model-context-protocol-servers-with-aws-lambda" , // Update this to your repo name
177177 branch : "main" ,
178178 connectionArn : githubConnection . attrConnectionArn ,
You can’t perform that action at this time.
0 commit comments