From 92cc0269044ad8a82120ad6b5e8d3ff8720bc1a6 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Fri, 25 Nov 2022 15:41:55 +1100 Subject: [PATCH] rm submodule fetching workflow --- .github/workflows/submodules.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/submodules.yml diff --git a/.github/workflows/submodules.yml b/.github/workflows/submodules.yml deleted file mode 100644 index 463aa5e..0000000 --- a/.github/workflows/submodules.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: 'update submodules' - -on: - workflow_dispatch: - -jobs: - sync: - name: 'update submodules' - runs-on: ubuntu-latest - steps: - - name: checkout repo - uses: actions/checkout@v2 - with: - submodules: true - - name: pull updates - run: | - git pull --recurse-submodules - git submodule update --remote --recursive - - name: commit changes - uses: stefanzweifel/git-auto-commit-action@v4