From 859fe81d71bf012ac151a94d7ab78e4c74ed7ce2 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Fri, 16 Dec 2022 17:27:13 +0000 Subject: [PATCH] github/submodule-update: Ensure `exit 0` on the update check I *think* the `exit 0` is to ensure the 'Check for changes' isn't considered failed due to `git` exit code. --- .github/workflows/submodule-update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/submodule-update.yml b/.github/workflows/submodule-update.yml index 11082721..692de46a 100644 --- a/.github/workflows/submodule-update.yml +++ b/.github/workflows/submodule-update.yml @@ -39,8 +39,8 @@ jobs: echo '::set-output changes=true' else echo '::set-output changes=false' - exit 0 fi + exit 0 - name: Create submodules changes branch if: steps.check_for_changes.outputs.changes == 'true'