Skip to content

Commit 404c105

Browse files
committed
chore: Point pipeline to my fork
1 parent e07293b commit 404c105

File tree

4 files changed

+26
-288
lines changed

4 files changed

+26
-288
lines changed

.github/workflows/integ-tests.yml

Lines changed: 0 additions & 80 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 0 additions & 207 deletions
This file was deleted.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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

pipeline/src/pipeline-stack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)