From b38b172d77ecfd24486e089ea2534f12ab33d1c3 Mon Sep 17 00:00:00 2001 From: Tom Whalley Date: Wed, 9 Oct 2024 14:38:39 +0000 Subject: [PATCH] re-indent --- .../workflows/update-lodestone-submodule.yml | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/update-lodestone-submodule.yml b/.github/workflows/update-lodestone-submodule.yml index 43b254f..ee40d2a 100644 --- a/.github/workflows/update-lodestone-submodule.yml +++ b/.github/workflows/update-lodestone-submodule.yml @@ -2,7 +2,7 @@ name: Send submodule updates to parent repo on: push: - branches: + branches: - main jobs: @@ -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 "actions@github.com" - 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 "actions@github.com" + git config user.name "GitHub Actions - update submodules" + git add --all + git commit -m "Update submodules" || echo "No changes to commit" + git push