From 916b9a67d86050136004fa8d575c0c8c94aa8206 Mon Sep 17 00:00:00 2001 From: ComicIronic Date: Sun, 14 Jun 2020 14:32:10 +0100 Subject: [PATCH] Make workflow pull in engine changes required by a PR (#1123) Using a fancy new GitHub action, this makes the workflow prevent automatic submodule updates and allows for pulling engine changes in from a required engine PR. --- .github/workflows/build-test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index cd4925250c..7322d958fd 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -14,7 +14,11 @@ jobs: steps: - uses: actions/checkout@v2 - name: Setup submodule - run: git submodule update --init --recursive + run: | + git submodule update --init --recursive + touch BuildChecker/DISABLE_SUBMODULE_AUTOUPDATE + - name: Pull engine updates + uses: ivanbakel/submodule-dependency@v0.1.0 - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: