Skip to content

Commit

Permalink
Create updates-submodules.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaharNaveh authored May 10, 2024
1 parent f6e7354 commit 51e1414
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/updates-submodules.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Update module
on:
repository_dispatch:
types: update
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 51e1414

Please sign in to comment.