update #97
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update submodule | |
on: | |
repository_dispatch: | |
types: update | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.PA_TOKEN }} | |
submodules: true | |
- name: Install SSH key | |
uses: shimataro/ssh-key-action@v2 | |
with: | |
key: ${{ secrets.SSH_KEY }} | |
known_hosts: unnecessary | |
- name: Retrieve Github Host Keys | |
run: ssh-keyscan github.com > ~/.ssh/known_hosts | |
- name: Update submodule | |
run: | | |
git submodule update --init --recursive --checkout -f --remote -- "${{github.event.client_payload.module}}" | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
git commit -am "ci: ${{github.event.client_payload.module}} - ${{github.event.client_payload.sha}}" | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
ssh: true | |
branch: ${{ github.ref }} |