Skip to content

Commit

Permalink
show the Git config and the worktree in the sync CI (#87)
Browse files Browse the repository at this point in the history
this PR shows the Git config and the Git worktree of the repo in the CI.

this should help debug why the sync is not happening...
  • Loading branch information
amtoine authored Nov 17, 2023
1 parent e4d9e33 commit a127fe7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/actions/sync_action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ runs:
git config user.name "$(git log -n 1 --pretty=format:%an)"
git config user.email "$(git log -n 1 --pretty=format:%ae)"
- name: Show Git config and worktree
shell: bash
run: |
git config --list | grep user.name
git config --list | grep user.email
git log --graph --branches --remotes --tags --oneline --decorate
- name: "Attempt to merge main into nightly"
run: |
set +e
Expand Down

0 comments on commit a127fe7

Please sign in to comment.