We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfc4812 commit d9b9f86Copy full SHA for d9b9f86
1 file changed
.github/workflows/openapi-generate-and-push.yml
@@ -151,7 +151,8 @@ jobs:
151
fi
152
153
# Convert space-separated versions to comma-separated for changelog_manager.rb
154
- VERSIONS_CSV=$(echo "$GENERATED_VERSIONS" | tr ' ' ',')
+ # Trim leading/trailing whitespace first
155
+ VERSIONS_CSV=$(echo "$GENERATED_VERSIONS" | xargs | tr ' ' ',')
156
ruby .github/changelog_manager.rb "$VERSIONS_CSV"
157
- name: Copy documentation
158
run: |
0 commit comments