You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: simplify git strategy to use 'git show HEAD' for maintenance branches
- Remove complex HEAD~1..HEAD logic that fails in shallow clones
- Use simple 'git show --name-only HEAD' for maintenance branches
- Fix output parsing to properly extract module names
- Improve verbose logging to show actual strategy used
This approach is much simpler and more reliable:
- No dependency on git history depth
- Cherry-pick commits contain the files that changed
- Works consistently in GitHub Actions environment
0 commit comments