From 84d7c77dcee7c6d8dd4bb85464ea80c0f1a3bfb7 Mon Sep 17 00:00:00 2001 From: Nicolas Giard Date: Tue, 7 Feb 2023 14:25:39 -0500 Subject: [PATCH] ci: fix nightly db build schedule condition --- .github/workflows/dev-db-nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dev-db-nightly.yml b/.github/workflows/dev-db-nightly.yml index 838eb48de..4bc864809 100644 --- a/.github/workflows/dev-db-nightly.yml +++ b/.github/workflows/dev-db-nightly.yml @@ -39,7 +39,7 @@ jobs: build-mariadb: name: Build MariaDB Docker Images runs-on: ubuntu-latest - if: ${{ github.ref == 'refs/heads/main' && github.event.inputs.skipMariaDBBuild == 'false' }} + if: ${{ github.ref == 'refs/heads/main' && (github.event_name == 'schedule' || github.event.inputs.skipMariaDBBuild == 'false' }} permissions: contents: read packages: write