51 lines
1.3 KiB
YAML
51 lines
1.3 KiB
YAML
#
|
|
#
|
|
#
|
|
|
|
name: Update hellen-one Reference
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
update-git:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Git Checkout Submodules
|
|
run: |
|
|
git submodule update --init --depth=1 hellen-one
|
|
|
|
- name: Git Update Submodules
|
|
run: |
|
|
git submodule update --remote
|
|
|
|
- name: Commit fresh submodules
|
|
env:
|
|
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
|
|
run: |
|
|
git config --local user.email "action@github.com"
|
|
git config --local user.name "GitHub git update Action"
|
|
git add hellen-one
|
|
OUT=$(git commit -am "GHA says update hellen-one" 2>&1) || echo "commit failed, finding out why"
|
|
if echo "$OUT" | grep 'nothing to commit'; then
|
|
echo "hellen-one: looks like nothing to commit"
|
|
echo "NOCOMMIT=true" >> $GITHUB_ENV
|
|
exit 0
|
|
elif echo "$OUT" | grep 'changed'; then
|
|
echo "hellen-one: looks like something has changed"
|
|
exit 0
|
|
else
|
|
echo "hellen-one: looks like something unexpected"
|
|
exit 1
|
|
fi
|
|
git status
|
|
|
|
- name: Push
|
|
if: ${{ env.NOCOMMIT != 'true'}}
|
|
uses: ad-m/github-push-action@master
|
|
with:
|
|
github_token: ${{ github.token }}
|