Skip to content

Commit

Permalink
re-indent
Browse files Browse the repository at this point in the history
  • Loading branch information
t-whalley committed Oct 9, 2024
1 parent ed624ec commit b38b172
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/update-lodestone-submodule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Send submodule updates to parent repo

on:
push:
branches:
branches:
- main

jobs:
Expand All @@ -15,21 +15,21 @@ jobs:


steps:
- uses: actions/checkout@v2
with:
repository: whalleyt/lodestone
token: ${{ secrets.GITHUB_TOKEN }}
submodules: true
- uses: actions/checkout@v2
with:
repository: whalleyt/lodestone
token: ${{ secrets.GITHUB_TOKEN }}
submodules: true

- name: Pull & update submodules recursively
run: |
git submodule update --init --recursive
git submodule update --recursive --remote
- name: Pull & update submodules recursively
run: |
git submodule update --init --recursive
git submodule update --recursive --remote
- name: Commit
run: |
git config user.email "[email protected]"
git config user.name "GitHub Actions - update submodules"
git add --all
git commit -m "Update submodules" || echo "No changes to commit"
git push
- name: Commit
run: |
git config user.email "[email protected]"
git config user.name "GitHub Actions - update submodules"
git add --all
git commit -m "Update submodules" || echo "No changes to commit"
git push

0 comments on commit b38b172

Please sign in to comment.