From d9332ddbf3b94d858da486f3f2994b90d25f66a9 Mon Sep 17 00:00:00 2001 From: cgardens Date: Sun, 17 Mar 2024 10:38:41 -0700 Subject: [PATCH] bring back trigger --- .github/workflows/gradle.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 874da52cb75..7bbb53ac724 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -100,6 +100,12 @@ jobs: # on the stock runners. Since no developer iteration loop depends on this, we use the stock gh runners. If # we need to bring back the AWS runners, checkout 98f3e85a9ea2634298653642b18ac38fd1b85929 as a reference. runs-on: ubuntu-latest + needs: + - changes + # Because scheduled builds on main require us to skip the changes job. Use always() to force this to run on master. + if: | + needs.changes.outputs.frontend == 'true' || needs.changes.outputs.build == 'true' || github.ref == 'refs/heads/main' + || (always() && needs.changes.outputs.frontendServers == 'true') steps: - name: Checkout Airbyte uses: actions/checkout@v3