You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by yj...@apache.org on 2021/02/05 23:27:58 UTC

[superset] branch elizabeth/add-more-more-checks created (now d1dab35)

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

yjc pushed a change to branch elizabeth/add-more-more-checks
in repository https://gitbox.apache.org/repos/asf/superset.git.


      at d1dab35  Check docker-build and add required_signatures

This branch includes the following new commits:

     new 06727f9  add more checks
     new d1dab35  Check docker-build and add required_signatures

The 2 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] 02/02: Check docker-build and add required_signatures

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

yjc pushed a commit to branch elizabeth/add-more-more-checks
in repository https://gitbox.apache.org/repos/asf/superset.git

commit d1dab35238711ef74c514a3c13e12296fe6f3700
Author: Jesse Yang <je...@airbnb.com>
AuthorDate: Fri Feb 5 13:27:03 2021 -1000

    Check docker-build and add required_signatures
---
 .asf.yaml                    | 4 +++-
 .github/workflows/docker.yml | 3 +--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index d749d7d..fc9c306 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -61,7 +61,7 @@ github:
         # contexts are the names of checks that must pass
         contexts:
           - check
-          - docker-release
+          - docker-build
           - frontend-build
           - python-lint (3.7)
           - test-mysql (3.7)
@@ -72,3 +72,5 @@ github:
         dismiss_stale_reviews: false
         require_code_owner_reviews: true
         required_approving_review_count: 1
+      
+      required_signatures: true
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index d149986..aead7b4 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -8,9 +8,8 @@ on:
     types: [synchronize, opened, reopened, ready_for_review]
 
 jobs:
-  build:
+  docker-build:
     if: github.event.pull_request.draft == false
-    name: build
     runs-on: ubuntu-latest
     steps:
       - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"


[superset] 01/02: add more checks

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

yjc pushed a commit to branch elizabeth/add-more-more-checks
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 06727f9aadb45f44d9ca8adeb9e75e246847f323
Author: Elizabeth Thompson <es...@gmail.com>
AuthorDate: Fri Feb 5 11:06:00 2021 -0800

    add more checks
---
 .asf.yaml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.asf.yaml b/.asf.yaml
index 99c38ef..d749d7d 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -61,8 +61,12 @@ github:
         # contexts are the names of checks that must pass
         contexts:
           - check
+          - docker-release
+          - frontend-build
+          - python-lint (3.7)
           - test-mysql (3.7)
           - test-postgres (3.7)
+          - test-sqlite (3.7)
 
       required_pull_request_reviews:
         dismiss_stale_reviews: false