Skip to content

Update Submodules

Update Submodules #1

#
# See https://github.com/rusefi/rusefi/wiki/Connector-Mapping
#
name: Update Submodules
on:
# schedule:
# - cron: '0 0 * * *'
workflow_dispatch:
jobs:
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Git Update
run: |
git submodule update --remote
- name: Commit fresh submodules
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub git update Action"
git add ext/rusefi
git status
- name: Push
uses: ad-m/github-push-action@master
with:
github_token: ${{ github.token }}