You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ru...@apache.org on 2023/07/11 16:50:21 UTC

[superset] branch master updated: chore: Re-enable some GitHub action workflows in draft mode (#24626)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new cbf39650d0 chore: Re-enable some GitHub action workflows in draft mode (#24626)
cbf39650d0 is described below

commit cbf39650d0501f1410b12b80e1e1421a4d107119
Author: John Bodley <45...@users.noreply.github.com>
AuthorDate: Tue Jul 11 09:50:14 2023 -0700

    chore: Re-enable some GitHub action workflows in draft mode (#24626)
---
 .github/workflows/docker-release.yml                  | 1 -
 .github/workflows/docker.yml                          | 1 -
 .github/workflows/embedded-sdk-test.yml               | 1 -
 .github/workflows/superset-cli.yml                    | 1 -
 .github/workflows/superset-e2e.yml                    | 1 -
 .github/workflows/superset-frontend.yml               | 1 -
 .github/workflows/superset-python-integrationtest.yml | 3 ---
 .github/workflows/superset-python-misc.yml            | 3 ---
 .github/workflows/superset-python-presto-hive.yml     | 2 --
 .github/workflows/superset-python-unittest.yml        | 1 -
 .github/workflows/superset-translations.yml           | 2 --
 .github/workflows/superset-websocket.yml              | 1 -
 12 files changed, 18 deletions(-)

diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml
index cc47c996d3..f0253dbaec 100644
--- a/.github/workflows/docker-release.yml
+++ b/.github/workflows/docker-release.yml
@@ -6,7 +6,6 @@ on:
 jobs:
   config:
     runs-on: "ubuntu-latest"
-    if: github.event.pull_request.draft == false
     outputs:
       has-secrets: ${{ steps.check.outputs.has-secrets }}
     steps:
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index 8a081a303c..43483cf5f9 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -10,7 +10,6 @@ on:
 jobs:
   config:
     runs-on: "ubuntu-latest"
-    if: github.event.pull_request.draft == false
     outputs:
       has-secrets: ${{ steps.check.outputs.has-secrets }}
     steps:
diff --git a/.github/workflows/embedded-sdk-test.yml b/.github/workflows/embedded-sdk-test.yml
index bff47169e7..20c7ef5b1b 100644
--- a/.github/workflows/embedded-sdk-test.yml
+++ b/.github/workflows/embedded-sdk-test.yml
@@ -8,7 +8,6 @@ on:
 
 jobs:
   embedded-sdk-test:
-    if: github.event.pull_request.draft == false
     runs-on: ubuntu-20.04
     defaults:
       run:
diff --git a/.github/workflows/superset-cli.yml b/.github/workflows/superset-cli.yml
index 129ecc117a..dec013326e 100644
--- a/.github/workflows/superset-cli.yml
+++ b/.github/workflows/superset-cli.yml
@@ -9,7 +9,6 @@ on:
 
 jobs:
   test-load-examples:
-    if: github.event.pull_request.draft == false
     runs-on: ubuntu-20.04
     strategy:
       matrix:
diff --git a/.github/workflows/superset-e2e.yml b/.github/workflows/superset-e2e.yml
index e9ef9a4953..031aa04f7b 100644
--- a/.github/workflows/superset-e2e.yml
+++ b/.github/workflows/superset-e2e.yml
@@ -11,7 +11,6 @@ on:
 
 jobs:
   cypress-matrix:
-    if: github.event.pull_request.draft == false
     runs-on: ubuntu-20.04
     permissions:
       contents: read
diff --git a/.github/workflows/superset-frontend.yml b/.github/workflows/superset-frontend.yml
index aeb258cd26..35e1a989a4 100644
--- a/.github/workflows/superset-frontend.yml
+++ b/.github/workflows/superset-frontend.yml
@@ -10,7 +10,6 @@ on:
 
 jobs:
   frontend-build:
-    if: github.event.pull_request.draft == false
     runs-on: ubuntu-20.04
     steps:
       - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
diff --git a/.github/workflows/superset-python-integrationtest.yml b/.github/workflows/superset-python-integrationtest.yml
index 40096c2eb8..460ddb3dda 100644
--- a/.github/workflows/superset-python-integrationtest.yml
+++ b/.github/workflows/superset-python-integrationtest.yml
@@ -10,7 +10,6 @@ on:
 
 jobs:
   test-mysql:
-    if: github.event.pull_request.draft == false
     runs-on: ubuntu-20.04
     strategy:
       matrix:
@@ -76,7 +75,6 @@ jobs:
           bash .github/workflows/codecov.sh -c -F python -F mysql
 
   test-postgres:
-    if: github.event.pull_request.draft == false
     runs-on: ubuntu-20.04
     strategy:
       matrix:
@@ -143,7 +141,6 @@ jobs:
           bash .github/workflows/codecov.sh -c -F python -F postgres
 
   test-sqlite:
-    if: github.event.pull_request.draft == false
     runs-on: ubuntu-20.04
     strategy:
       matrix:
diff --git a/.github/workflows/superset-python-misc.yml b/.github/workflows/superset-python-misc.yml
index 400c217ed4..a507467cad 100644
--- a/.github/workflows/superset-python-misc.yml
+++ b/.github/workflows/superset-python-misc.yml
@@ -10,7 +10,6 @@ on:
 
 jobs:
   python-lint:
-    if: github.event.pull_request.draft == false
     runs-on: ubuntu-20.04
     strategy:
       matrix:
@@ -50,7 +49,6 @@ jobs:
         run: pylint -j 0 superset
 
   pre-commit:
-    if: github.event.pull_request.draft == false
     runs-on: ubuntu-20.04
     strategy:
       matrix:
@@ -91,7 +89,6 @@ jobs:
         run: pre-commit run --all-files
 
   babel-extract:
-    if: github.event.pull_request.draft == false
     runs-on: ubuntu-20.04
     strategy:
       matrix:
diff --git a/.github/workflows/superset-python-presto-hive.yml b/.github/workflows/superset-python-presto-hive.yml
index 9349549848..64811b49bc 100644
--- a/.github/workflows/superset-python-presto-hive.yml
+++ b/.github/workflows/superset-python-presto-hive.yml
@@ -10,7 +10,6 @@ on:
 
 jobs:
   test-postgres-presto:
-    if: github.event.pull_request.draft == false
     runs-on: ubuntu-20.04
     strategy:
       matrix:
@@ -87,7 +86,6 @@ jobs:
           bash .github/workflows/codecov.sh -c -F python -F presto
 
   test-postgres-hive:
-    if: github.event.pull_request.draft == false
     runs-on: ubuntu-20.04
     strategy:
       matrix:
diff --git a/.github/workflows/superset-python-unittest.yml b/.github/workflows/superset-python-unittest.yml
index 3fdc315b02..5f7639e67c 100644
--- a/.github/workflows/superset-python-unittest.yml
+++ b/.github/workflows/superset-python-unittest.yml
@@ -10,7 +10,6 @@ on:
 
 jobs:
   unit-tests:
-    if: github.event.pull_request.draft == false
     runs-on: ubuntu-20.04
     strategy:
       matrix:
diff --git a/.github/workflows/superset-translations.yml b/.github/workflows/superset-translations.yml
index c903b92269..e42a9ac9e7 100644
--- a/.github/workflows/superset-translations.yml
+++ b/.github/workflows/superset-translations.yml
@@ -9,7 +9,6 @@ on:
 
 jobs:
   frontend-check:
-    if: github.event.pull_request.draft == false
     runs-on: ubuntu-20.04
     steps:
       - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
@@ -31,7 +30,6 @@ jobs:
           npm run check-translation
 
   babel-extract:
-    if: github.event.pull_request.draft == false
     runs-on: ubuntu-20.04
     strategy:
       matrix:
diff --git a/.github/workflows/superset-websocket.yml b/.github/workflows/superset-websocket.yml
index 770ec54df4..73a532cb98 100644
--- a/.github/workflows/superset-websocket.yml
+++ b/.github/workflows/superset-websocket.yml
@@ -9,7 +9,6 @@ on:
 
 jobs:
   app-checks:
-    if: github.event.pull_request.draft == false
     runs-on: ubuntu-20.04
     steps:
       - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"