hellen-one/bin/gha-commit.sh

28 lines
875 B
Bash
Raw Normal View History

2022-05-21 09:11:14 -07:00
#!/bin/bash
2023-07-12 21:00:02 -07:00
git config --local user.email "action@github.com"
git config --local user.name "GitHub create-board Action"
2023-12-10 17:59:42 -08:00
echo "Status 1/3"
git status
git restore *.kicad_pro
2023-12-10 17:59:42 -08:00
echo "Status 2/3"
git status
git add gerber/*
2023-07-12 21:00:02 -07:00
git add boards/*
2023-12-10 17:59:42 -08:00
echo "Status 3/3"
2023-07-12 21:00:02 -07:00
git status
OUT=$(git commit -am "[skip actions] Auto-generated board v2.1" 2>&1) || echo "commit failed, finding out why"
if echo "$OUT" | grep 'nothing to commit' || echo "$OUT" | grep 'nothing added to commit'; then
2023-07-12 21:00:02 -07:00
echo "headers: looks like nothing to commit"
# todo: NOCOMMIT is deprecated I guess? YESCOMMIT works better with multiple invocations per action
2023-07-12 21:00:02 -07:00
echo "::set-env name=NOCOMMIT::true"
exit 0
elif echo "$OUT" | grep 'changed'; then
echo "headers: looks like something has changed"
echo "::set-env name=YESCOMMIT::true"
2023-07-12 21:00:02 -07:00
exit 0
else
echo "headers: looks like something unexpected"
exit 1
fi
2022-05-21 09:11:14 -07:00