Skip to content

Commit

Permalink
Update Submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
rusefillc committed Dec 2, 2023
1 parent 11f742c commit ffa7048
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/update-submodules.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#
# 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 }}

0 comments on commit ffa7048

Please sign in to comment.