File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121 pinDigests : true ,
2222 } ,
2323 {
24- matchPackageNames : [ 'googleapis/genai -toolbox' ] ,
24+ matchPackageNames : [ 'googleapis/mcp -toolbox' ] ,
2525 'semanticCommitType' : 'feat'
2626 }
2727 ] ,
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 ]
Original file line number Diff line number Diff line change 2020
2121jobs :
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
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);
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
You can’t perform that action at this time.
0 commit comments