Skip to content

Commit

Permalink
fix(Other): Fix zephyr-hal.yml path issue (#1342)
Browse files Browse the repository at this point in the history
Signed-off-by: Furkan Akkiz <[email protected]>
  • Loading branch information
hfakkiz authored Feb 10, 2025
1 parent a3b045e commit deda6c5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/zephyr-hal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,15 @@ jobs:
cd ./hal_adi
if [[ -n $(git status -s) ]]; then
echo "Starting to commit changes to hal_adi repository"
cd ${msdk}
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
cd ../msdk
msdk_head=$(git rev-parse HEAD)
commit_author=$(git show --no-patch --format="%an <%ae>" ${msdk_head})
commit_msg=$(git show --no-patch --format="%B" ${msdk_head})
cd ${hal_adi}
cd ../hal_adi
git add *
git commit --author="${commit_author}" -m "${commit_msg}"
git push
Expand Down

0 comments on commit deda6c5

Please sign in to comment.