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