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
3 changes: 2 additions & 1 deletion .github/workflows/openapi-generate-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ jobs:
fi

# Convert space-separated versions to comma-separated for changelog_manager.rb
VERSIONS_CSV=$(echo "$GENERATED_VERSIONS" | tr ' ' ',')
# Trim leading/trailing whitespace first
VERSIONS_CSV=$(echo "$GENERATED_VERSIONS" | xargs | tr ' ' ',')
ruby .github/changelog_manager.rb "$VERSIONS_CSV"
- name: Copy documentation
run: |
Expand Down