-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (32 loc) · 1.08 KB
/
update-submodule.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Update Submodules
# Run this workflow every time code is pushed to any branch
on:
push:
branches:
- '**' # This runs on any branch
jobs:
update-submodules:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: 'recursive' # Ensure submodules are checked out
# Run the submodule update command
- name: Update submodules
run: git submodule update --remote
# Commit updated submodules (if any)
- name: Commit changes
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "CI: Update submodules" || echo "No changes to commit"
# Push changes back to the repository using PAT
- name: Push changes
env:
TOKEN: ${{ secrets.PAT_TOKEN }}
run: |
git remote set-url origin https://x-access-token:${TOKEN}@github.com/${{ github.repository }}.git
git push origin HEAD