Skip to content

Commit 8c6ea10

Browse files
authored
chore: update genai-toolbox repo deps name (#133)
1 parent e44f6b2 commit 8c6ea10

6 files changed

Lines changed: 58 additions & 58 deletions

File tree

.github/renovate.json5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
pinDigests: true,
2222
},
2323
{
24-
matchPackageNames: ['googleapis/genai-toolbox'],
24+
matchPackageNames: ['googleapis/mcp-toolbox'],
2525
'semanticCommitType': 'feat'
2626
}
2727
],
@@ -31,7 +31,7 @@
3131
managerFilePatterns: ["/toolbox_version\\.txt$/"],
3232
matchStrings: ["(?<currentValue>[\\d\\.]+)"],
3333
datasourceTemplate: "github-releases",
34-
packageNameTemplate: "googleapis/genai-toolbox",
34+
packageNameTemplate: "googleapis/mcp-toolbox",
3535
extractVersionTemplate: "^v(?<version>.*)$",
3636
}
3737
]

.github/workflows/mirror-changelog.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020

2121
jobs:
2222
add-release-notes:
23-
if: github.actor == 'renovate-bot' && startsWith(github.head_ref, 'renovate/googleapis-genai-toolbox')
23+
if: github.actor == 'renovate-bot' && startsWith(github.head_ref, 'renovate/googleapis-mcp-toolbox')
2424
runs-on: ubuntu-latest
2525
permissions:
2626
pull-requests: write
@@ -38,7 +38,7 @@ jobs:
3838
const prBody = context.payload.pull_request.body || '';
3939
4040
// Extract the relevant changelog section
41-
const startMarker = '<summary>googleapis/genai-toolbox';
41+
const startMarker = '<summary>googleapis/mcp-toolbox';
4242
const endMarker = '</details>';
4343
const startIndex = prBody.indexOf(startMarker);
4444
const endIndex = prBody.indexOf(endMarker, startIndex);
@@ -98,8 +98,8 @@ jobs:
9898
// To prevent this, we insert an invisible Unicode zero-width space (`\u200B`)
9999
// between the '#' and the number in the link text. This breaks the parser's
100100
// pattern matching without changing the visual appearance of the link.
101-
// E.g., "[#1770](...)" becomes "[genai-toolbox#​1770](...)"
102-
originalContent = originalContent.replace(/\[#(\d+)\](\([^)]+\))/g, '[genai-toolbox#\u200B$1]$2');
101+
// E.g., "[#1770](...)" becomes "[mcp-toolbox#​1770](...)"
102+
originalContent = originalContent.replace(/\[#(\d+)\](\([^)]+\))/g, '[mcp-toolbox#\u200B$1]$2');
103103
104104
const lineAsLowerCase = originalContent.toLowerCase();
105105

.github/workflows/package-and-upload-assets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ name: Package and Upload Release Assets
1818
env:
1919
PACKAGE_NAME: "cloud-sql-postgresql"
2020
FILES_TO_PACKAGE: "gemini-extension.json CLOUD-SQL-POSTGRESQL.md LICENSE"
21-
GCS_BUCKET_URL: "https://storage.googleapis.com/genai-toolbox/geminicli"
21+
GCS_BUCKET_URL: "https://storage.googleapis.com/mcp-toolbox-for-databases/geminicli"
2222

2323
on:
2424
release:

.github/workflows/presubmit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Install toolbox binary
3131
run: |
3232
VERSION=$(cat toolbox_version.txt)
33-
curl -L -o toolbox "https://storage.googleapis.com/genai-toolbox/v${VERSION}/linux/amd64/toolbox"
33+
curl -L -o toolbox "https://storage.googleapis.com/mcp-toolbox-for-databases/v${VERSION}/linux/amd64/toolbox"
3434
chmod +x toolbox
3535
3636
- name: Install Extension

0 commit comments

Comments
 (0)