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

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


The following commit(s) were added to refs/heads/master by this push:
     new fd89900  Run CI on all pushes / PR's (#9538)
fd89900 is described below

commit fd89900dc5b39b6dd79be2b00025d9e5d0e1e81a
Author: Craig Rueda <[email protected]>
AuthorDate: Tue Apr 14 21:16:16 2020 -0700

    Run CI on all pushes / PR's (#9538)
---
 .github/workflows/superset-e2e.yml      |  5 +----
 .github/workflows/superset-frontend.yml |  9 +--------
 .github/workflows/superset-python.yml   | 19 +------------------
 3 files changed, 3 insertions(+), 30 deletions(-)

diff --git a/.github/workflows/superset-e2e.yml 
b/.github/workflows/superset-e2e.yml
index a093f82..94c8a83 100644
--- a/.github/workflows/superset-e2e.yml
+++ b/.github/workflows/superset-e2e.yml
@@ -1,9 +1,6 @@
 name: E2E
 
-on:
-  push:
-    branches: [ master ]
-  pull_request:
+on: [push, pull_request]
 
 jobs:
   cypress:
diff --git a/.github/workflows/superset-frontend.yml 
b/.github/workflows/superset-frontend.yml
index 37bc9ff..3fbad8c 100644
--- a/.github/workflows/superset-frontend.yml
+++ b/.github/workflows/superset-frontend.yml
@@ -1,13 +1,6 @@
 name: Frontend
 
-on:
-  push:
-    branches: [ master ]
-    paths:
-    - superset-frontend/**
-  pull_request:
-    paths:
-    - superset-frontend/**
+on: [push, pull_request]
 
 jobs:
   frontend-build:
diff --git a/.github/workflows/superset-python.yml 
b/.github/workflows/superset-python.yml
index bfc022c..5bf0254 100644
--- a/.github/workflows/superset-python.yml
+++ b/.github/workflows/superset-python.yml
@@ -1,23 +1,6 @@
 name: Python
 
-on:
-  # only build on direct push to `master` branch
-  push:
-    branches: [ master ]
-    paths:
-    - ./**/*.py
-    - superset/**
-    - tests/**
-    - requirements*.txt
-  # but also build on pull requests to any branch
-  # (the so-called feature branch)
-  pull_request:
-    paths:
-    - ./**/*.py
-    - superset/**
-    - tests/**
-    - setup.py
-    - requirements*.txt
+on: [push, pull_request]
 
 jobs:
   lint:

Reply via email to