Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/mirror-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:

jobs:
add-release-notes:
if: github.actor == 'renovate[bot]' && startsWith(github.head_ref, 'renovate/googleapis-genai-toolbox')
if: github.actor == 'renovate-bot' && startsWith(github.head_ref, 'renovate/googleapis-genai-toolbox')
runs-on: ubuntu-latest
permissions:
pull-requests: write
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:

// Include if it doesn't have a prefix OR it has any of the required keywords
if (!hasPrefix || hasAnyRequiredKeyword) {
newChangelog.push(`- ${currentType}: ${originalContent}`);
newChangelog.push(`${currentType}: ${originalContent}`);
} else {
console.log(`Filtering out: ${originalContent}`);
}
Expand Down
Loading