This commit is contained in:
rusefillc 2023-12-04 14:27:41 -05:00
parent 3020eeb077
commit e35f3078e2
1 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,38 @@
#
#
#
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 ext/rusefi
git commit -am "GHA says update hellen-one"
git status
- name: Push
uses: ad-m/github-push-action@master
with:
github_token: ${{ github.token }}