Reset state of repo with updated README

Tá an tiomantas seo le fáil i:
amd-jmacaran
2025-07-15 12:29:35 -04:00
tiomantas c3f8f57c80
D'athraigh 43 comhad le 4718 breiseanna agus 0 scriosta
+27
Féach ar an gComhad
@@ -0,0 +1,27 @@
name: Merge .gitmodules
on:
workflow_dispatch:
jobs:
combine-gitmodules:
runs-on: ubuntu-latest
steps:
- name: Checkout Monorepo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Run Merge Script
run: python .github/scripts/merge-submodules.py
- name: Commit Merged .gitmodules
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add .gitmodules
git commit -m "Combine subrepo .gitmodules files into root" || echo "No changes"
git push