Skip to content

Commit 9146831

Browse files
committed
Test workflow
1 parent 82c9fc5 commit 9146831

File tree

9 files changed

+31
-31
lines changed

9 files changed

+31
-31
lines changed

.github/workflows/update-submodule.yml

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: Update Submodules
22

3-
# Run this workflow every time code is pushed to any branch
4-
on:
3+
on:
54
push:
65
branches:
76
- '**' # This runs on any branch
@@ -11,49 +10,50 @@ jobs:
1110
runs-on: ubuntu-latest
1211

1312
steps:
14-
# Checkout the repository
1513
- name: Checkout repository
1614
uses: actions/checkout@v3
1715
with:
1816
submodules: 'recursive' # Ensure submodules are checked out
1917

20-
# Check if submodules are already up to date
21-
- name: Check for submodule updates
22-
id: submodule-check
18+
# Check if the submodule is already up-to-date
19+
- name: Check submodule status
20+
id: submodule-status
2321
run: |
24-
# Save current submodule commit hash
25-
CURRENT_COMMIT=$(git submodule status | awk '{ print $1 }')
26-
# Fetch the latest changes for submodules
27-
git submodule update --remote
28-
# Get the latest submodule commit hash after update
29-
LATEST_COMMIT=$(git submodule status | awk '{ print $1 }')
22+
# Get the current submodule commit hash
23+
CURRENT_COMMIT=$(git submodule status --recursive | awk '{ print $1 }')
3024
31-
# Check if the submodule commit hash has changed
25+
# Update submodule to the latest commit if it's not up to date
26+
git submodule update --remote --merge
27+
28+
# Get the latest submodule commit hash after the update
29+
LATEST_COMMIT=$(git submodule status --recursive | awk '{ print $1 }')
30+
31+
# Compare the commit hashes to check if update is needed
3232
if [ "$CURRENT_COMMIT" != "$LATEST_COMMIT" ]; then
33-
echo "Submodule has been updated."
34-
echo "updated=true" >> $GITHUB_ENV
33+
echo "Submodule updated."
34+
echo "submodule_updated=true" >> $GITHUB_ENV
3535
else
3636
echo "No submodule update needed."
37-
echo "updated=false" >> $GITHUB_ENV
37+
echo "submodule_updated=false" >> $GITHUB_ENV
3838
fi
3939
40-
# Commit updated submodules (if any)
40+
# Commit changes only if submodules were updated
4141
- name: Commit changes
42-
if: env.updated == 'true' # Only run this step if submodule was updated
42+
if: env.submodule_updated == 'true'
4343
run: |
4444
git config --global user.name "github-actions[bot]"
4545
git config --global user.email "github-actions[bot]@users.noreply.github.com"
4646
git add .
47-
git commit -m "CI: Update submodules"
47+
git commit -m "CI: Update submodules" || echo "No changes to commit"
4848
49-
# Pull the latest changes from the remote main to prevent conflicts before pushing
49+
# Pull the latest changes from the remote branch before pushing
5050
- name: Pull the latest changes
51-
if: env.updated == 'true' # Only pull if submodule update occurred
51+
if: env.submodule_updated == 'true'
5252
run: git pull origin main --rebase
5353

54-
# Push changes back to the repository using PAT
54+
# Push the changes to the repository using the PAT
5555
- name: Push changes
56-
if: env.updated == 'true' # Only push if submodule was updated
56+
if: env.submodule_updated == 'true'
5757
env:
5858
TOKEN: ${{ secrets.PAT_TOKEN }}
5959
run: |

24-S1/CG1111A/CG1111A-Notes

24-S1/CS1010/CS1010-Notes

Submodule CS1010-Notes updated 47 files

24-S1/LAF1201/LAF1201-Notes

24-S1/MA1511/MA1511-Cheatsheet

24-S1/MA1511/MA1511-Notes

24-S1/MA1512/MA1512-Notes

0 commit comments

Comments
 (0)