Skip to content

Commit

Permalink
Create update-submodules.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Colack authored Nov 20, 2024
1 parent 4851b86 commit 1e0a492
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/update-submodules.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Update Submodules

on:
push:
branches:
- main
workflow_dispatch:

jobs:
update-submodules:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive

- name: Update submodules
run: |
git submodule foreach git pull origin $(git rev-parse --abbrev-ref HEAD)
- name: Commit and push updated submodules
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "Update submodules to latest commit" || echo "No changes to commit"
git push

0 comments on commit 1e0a492

Please sign in to comment.