From f98f675391d2ac409e3dcf115654a80bd39c4e32 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sun, 22 Nov 2020 15:48:32 -0500 Subject: [PATCH] Stop the DMAPI update from failing if there is nothing to commit (#54720) --- .github/workflows/update_tgs_dmapi.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/update_tgs_dmapi.yml b/.github/workflows/update_tgs_dmapi.yml index 6fe53f700c2..be33046d4f2 100644 --- a/.github/workflows/update_tgs_dmapi.yml +++ b/.github/workflows/update_tgs_dmapi.yml @@ -26,6 +26,7 @@ jobs: library-path: 'code/modules/tgs' - name: Commit and Push + continue-on-error: true run: | git config user.name tgstation-server git config user.email tgstation-server@users.noreply.github.com @@ -35,6 +36,7 @@ jobs: - name: Create Pull Request uses: repo-sync/pull-request@v2 + if: ${{ success() }} with: source_branch: "tgs-dmapi-update" destination_branch: "master"