Skip to content

Create stale.yml

Create stale.yml #2

Workflow file for this run

name: Update Submodules
on:
push:
branches:
- main
workflow_dispatch:
jobs:
update-submodules:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Configure Git identity
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Update submodules
run: |
git submodule foreach '
git pull --ff-only origin $(git rev-parse --abbrev-ref HEAD) ||
git pull --no-rebase --allow-unrelated-histories origin $(git rev-parse --abbrev-ref HEAD) ||
(git merge --no-ff --allow-unrelated-histories origin/$(git rev-parse --abbrev-ref HEAD) || true)'
- name: Resolve merge conflicts automatically
run: |
git submodule foreach '
if git status | grep "Unmerged paths"; then
echo "Conflict detected, resolving with ours strategy for local submodule changes";
git merge --strategy=ours --no-edit || true;
git add -u;
git commit -m "Resolved conflicts using ours strategy";
fi'
- name: Commit and push updated submodules
run: |
git add .
git commit -m "Update submodules and resolve conflicts automatically" || echo "No changes to commit"
git push