Skip to content

Commit

Permalink
fix: workflow no git user config
Browse files Browse the repository at this point in the history
  • Loading branch information
KP64 committed Dec 15, 2024
1 parent 9275e27 commit db81b8c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/update-topology.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ jobs:
- name: Move Topology
run: sudo cp -r result/* assets/topology/

- name: Setup git user
run: |
git config --global user.name "$(git --no-pager log --format=format:'%an' -n 1)"
git config --global user.email "$(git --no-pager log --format=format:'%ae' -n 1)"
- name: Compare and replace
env:
PR_URL: ${{github.event.pull_request.html_url}}
Expand Down

0 comments on commit db81b8c

Please sign in to comment.