From b791639077e8e33c84e33cf9cc07b91cdd1f09f3 Mon Sep 17 00:00:00 2001 From: Asainte Bueno-Villanueva Date: Fri, 6 Feb 2026 07:49:13 -0500 Subject: [PATCH] Update .gitea/workflows/update-dispatches.yaml --- .gitea/workflows/update-dispatches.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/update-dispatches.yaml b/.gitea/workflows/update-dispatches.yaml index 734b4a5..5dfbcc1 100644 --- a/.gitea/workflows/update-dispatches.yaml +++ b/.gitea/workflows/update-dispatches.yaml @@ -15,11 +15,16 @@ jobs: - name: Generate News Scroll shell: bash run: | + # --- News Logic --- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" > dispatches.txt echo " 🔥 DYNASTY REVOLUTION: LATEST DISPATCHES 🔥" >> dispatches.txt echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" >> dispatches.txt git log -3 --pretty=format:"🔹 [%ad] %s (%an)" --date=format:"%m-%d-%Y" >> dispatches.txt echo -e "\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" >> dispatches.txt + + # --- Module Manifest Logic (ADD THIS HERE) --- + # This lists everything inside your 'modules' folder to a text file + ls -1 modules/ > modules_list.txt - name: Commit and Push shell: bash