Add Git LFS support to changelog generation action#73
Merged
Conversation
Propagates the use_git_lfs input parameter from iOS workflows to the universal-detect-changes-and-generate-changelog action, enabling LFS files to be downloaded during the initial checkout when needed. This eliminates the need for duplicate checkout steps and ensures LFS files are available throughout the entire workflow execution. Changes: - Add use_git_lfs input parameter to changelog action - Pass LFS parameter to checkout in the action - Propagate LFS input from iOS workflows to the action - Remove redundant checkout step from nightly workflow - Simplify on-demand workflow checkout condition 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
jmarek41
approved these changes
Nov 13, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds Git LFS support to the
universal-detect-changes-and-generate-changelogaction, enabling workflows to download LFS files during the initial checkout phase.Key Changes
use_git_lfsinput parameter to the changelog generation actionBenefits
false)Implementation Details
universal-detect-changes-and-generate-changelog action:
use_git_lfsboolean input (default:false)actions/checkout@v4iOS Nightly Build:
iOS On-Demand Build:
if: inputs.changelog != ''Test Coverage
All scenarios verified:
🤖 Generated with Claude Code