Skip to content

Commit b0cbb50

Browse files
committed
Test workflow
1 parent 9ecc098 commit b0cbb50

File tree

2 files changed

+13
-56
lines changed

2 files changed

+13
-56
lines changed

.github/workflows/update-submodule.yml

+13-27
Original file line numberDiff line numberDiff line change
@@ -15,39 +15,25 @@ jobs:
1515
uses: actions/checkout@v3
1616
with:
1717
submodules: 'recursive' # Ensure submodules are checked out
18+
fetch-depth: 0 # Fetch full history to ensure we can pull latest commits
1819

19-
# Step 2: Reset submodule to the latest commit
20-
- name: Reset submodule to latest commit
20+
# Step 2: Update submodules to their latest main branch commits
21+
- name: Update submodules
2122
run: |
22-
# Reinitialize the submodule (resets its state)
23+
# Initialize and update all submodules to their latest commits on main
2324
git submodule update --init --recursive
24-
git submodule foreach 'git reset --hard origin/main' # This resets the submodule to the latest commit from remote
25+
git submodule foreach 'git fetch origin main:main && git checkout main && git pull origin main'
2526
26-
# Step 3: Check if the submodule is already up-to-date
27+
# Step 3: Check if submodules have changed
2728
- name: Check submodule status
2829
id: submodule-status
2930
run: |
30-
# Fetch the current commit of the submodule
31-
CURRENT_COMMIT=$(git submodule status --recursive | awk '{ print $1 }')
32-
33-
# Ensure we're working with the latest submodule state
34-
git submodule update --init --recursive # Initialize or update submodule to ensure it's in sync
35-
36-
# Go to the submodule directory and fetch the latest commits from the remote repository
37-
cd path/to/submodule # Ensure you replace this with the actual submodule path
38-
git fetch origin # Fetch the latest changes from the remote
39-
git checkout main # Ensure we're on the main branch (or whichever branch you want)
40-
git pull origin main # Pull the latest changes from the remote
41-
42-
# Get the latest commit hash after the update
43-
LATEST_COMMIT=$(git rev-parse HEAD)
44-
45-
# Check if the submodule commit has changed
46-
if [ "$CURRENT_COMMIT" != "$LATEST_COMMIT" ]; then
47-
echo "Submodule updated."
31+
# Check if there are any changes in submodules
32+
if [[ -n "$(git status --porcelain)" ]]; then
33+
echo "Submodules have been updated."
4834
echo "submodule_updated=true" >> $GITHUB_ENV
4935
else
50-
echo "No submodule update needed."
36+
echo "No submodule updates needed."
5137
echo "submodule_updated=false" >> $GITHUB_ENV
5238
fi
5339
@@ -58,12 +44,12 @@ jobs:
5844
git config --global user.name "github-actions[bot]"
5945
git config --global user.email "github-actions[bot]@users.noreply.github.com"
6046
git add .
61-
git commit -m "CI: Update submodules" || echo "No changes to commit"
47+
git commit -m "CI: Update submodules to latest main branch commits" || echo "No changes to commit"
6248
6349
# Step 5: Pull the latest changes from the remote branch before pushing
6450
- name: Pull the latest changes
6551
if: env.submodule_updated == 'true'
66-
run: git pull origin main --rebase --allow-unrelated-histories
52+
run: git pull origin ${{ github.ref_name }} --rebase --allow-unrelated-histories
6753

6854
# Step 6: Push the changes back to the repository
6955
- name: Push changes
@@ -72,4 +58,4 @@ jobs:
7258
TOKEN: ${{ secrets.PAT_TOKEN }}
7359
run: |
7460
git remote set-url origin https://x-access-token:${TOKEN}@github.com/${{ github.repository }}.git
75-
git push origin HEAD
61+
git push origin HEAD

README.md

-29
Original file line numberDiff line numberDiff line change
@@ -2,86 +2,57 @@
22

33
Welcome to my **Lecture Notes**! This repository contains carefully curated and organized notes from my studies at the National University of Singapore (NUS), focusing primarily on **Computer Engineering** and related topics. These notes are designed to serve as a study aid and reference for both myself and others who might find them useful.
44

5-
---
6-
75
## 📚 **Contents**
8-
96
The repository is organized into the following sections:
10-
117
- **Semester-wise Notes**
128
Notes are categorized based on academic semesters, making it easy to track progress over time.
13-
149
- **Subject-wise Topics**
1510
Within each semester folder, notes are further divided by subject and module codes for clarity.
16-
1711
- **Additional Resources**
1812
Includes summaries, cheat sheets, and references to external resources when applicable.
1913

20-
---
21-
2214
## 🔖 **Features**
23-
2415
- **Structured Format**
2516
Notes are organized in a clean and consistent style:
2617
- **Technical Subjects**: Written in Markdown and deployed via GitBook for easy navigation and accessibility.
2718
- **Math and Physics**: Written in LaTeX and compiled using Overleaf to maintain precision and clarity.
28-
2919
- **Rich Content**
3020
Includes detailed explanations, examples, diagrams, and code snippets where applicable.
31-
3221
- **Cross-References**
3322
Links to related topics or prerequisite material are provided for a seamless learning experience.
34-
3523
- **Version Controlled**
3624
Changes and improvements to the notes are tracked using Git, ensuring the latest updates are always available.
3725

38-
---
39-
4026
## 🛠 **Setup**
41-
4227
To view and use these notes:
43-
4428
1. **Clone the Repository**
4529
Download the repository to your local machine:
4630
```bash
4731
git clone https://github.com/mendax1234/lecture-notes.git
4832
cd lecture-notes
4933
```
50-
5134
2. **Markdown Notes**
5235
- Open Markdown files using any Markdown viewer or IDE (e.g., VS Code, Obsidian).
53-
5436
3. **LaTeX Notes**
5537
- For LaTeX notes, upload the `.tex` files to [Overleaf](https://www.overleaf.com/) or use a local LaTeX editor (e.g., TeXShop, MikTeX).
5638
- Compile the `.tex` files to generate PDFs for an optimal reading experience.
57-
5839
4. **Navigation**
5940
Browse through the folders to find the specific notes you need. Notes are organized by semesters, subjects, and topics for easy access.
6041

61-
---
62-
6342
## 📝 **Contribution Guidelines**
64-
6543
Your contributions are welcome! To contribute:
66-
6744
1. Fork this repository.
6845
2. Make edits or add new notes in a **relevant folder**.
6946
3. Submit a pull request with a clear description of your changes.
7047

7148
Please ensure that your notes follow the existing structure and maintain clarity and conciseness.
7249

73-
---
7450

7551
## 🙌 **Acknowledgments**
76-
7752
A huge thank you to the professors, teaching assistants, and peers at NUS who have contributed to my understanding of these subjects. This repository reflects the collective effort of countless hours of lectures, discussions, and study sessions.
7853

79-
---
8054

8155
## 📨 **Feedback and Contact**
82-
8356
If you have any feedback, suggestions, or questions, feel free to open an issue or contact me directly via GitHub. Let’s learn and grow together!
8457

85-
---
86-
8758
Hope you find these notes helpful in your learning journey. 😊

0 commit comments

Comments
 (0)