You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2024/02/27 01:46:59 UTC

(superset) branch fix_docker_gha_trigger created (now 328ece3719)

This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a change to branch fix_docker_gha_trigger
in repository https://gitbox.apache.org/repos/asf/superset.git


      at 328ece3719 fix: docker CI job doesn't trigger on master

This branch includes the following new commits:

     new 328ece3719 fix: docker CI job doesn't trigger on master

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



(superset) 01/01: fix: docker CI job doesn't trigger on master

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a commit to branch fix_docker_gha_trigger
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 328ece3719e46c686c72e3188e02bd06c056e410
Author: Maxime Beauchemin <ma...@gmail.com>
AuthorDate: Mon Feb 26 17:37:20 2024 -0800

    fix: docker CI job doesn't trigger on master
---
 .github/workflows/docker.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index 75da2e1442..6e624fac65 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -19,7 +19,7 @@ jobs:
     strategy:
       matrix:
         build_preset: |
-          ${{ fromJson(github.event_name == 'pull_request' ? '["ci"]' : '["dev", "lean", "py310", "websocket", "dockerize"]') }}
+          ${{ fromJson(github.event_name === 'pull_request' ? '["ci"]' : '["dev", "lean", "py310", "websocket", "dockerize"]') }}
       fail-fast: false
     steps:
       - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"