Skip to content

Commit

Permalink
Add submodule-update action
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisreimann committed Aug 31, 2024
1 parent 95d24eb commit 70404b5
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/update-submodule.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Update submodule

on:
repository_dispatch:
types:
- update-submodule
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.PAT }}
submodules: recursive
- name: Update module
run: |
git submodule update --init --recursive --checkout -f --remote -- "${{github.event.client_payload.module}}"
git config --global user.name "GitHub Action"
git config --global user.email "noreply@github.com"
git commit -am "deploy: ${{github.event.client_payload.module}} - ${{github.event.client_payload.sha}}"
git push

0 comments on commit 70404b5

Please sign in to comment.