Skip to content

Commit e890faf

Browse files
committed
Adds debug output for git status in merge workflow
Adds a git status command to help debug file copying issues during the merge process, ensuring visibility into the repository state before committing changes.
1 parent 7235fd6 commit e890faf

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/merge-cvclaude-to-360.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
with:
2323
ref: main
2424
token: ${{ secrets.GITHUB_TOKEN }}
25+
clean: false
2526

2627
- name: Checkout cvclaude branch
2728
uses: actions/checkout@v4
@@ -52,6 +53,9 @@ jobs:
5253
ls -la 360/
5354
# Clean up cvclaude-build directory
5455
rm -rf cvclaude-build
56+
# Show git status to debug
57+
echo "Git status after copying files:"
58+
git status
5559
5660
- name: Commit and push changes to main
5761
run: |

0 commit comments

Comments
 (0)