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:30:05 UTC

[superset] branch elizabeth/add-more-more-checks updated (d1dab35 -> d81927c)

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.


 discard d1dab35  Check docker-build and add required_signatures
 discard 06727f9  add more checks
    omit 8c50cc9  typo to apache/superset (#12966)
    omit 76bcc44  fix: SQL Lab editor height in Safari (#12973)
    omit 2799894  chore: cleanup no-op Cypress (chrome) job (#12972)
    omit 0d1b59e  chore: change name of python lint action (#12968)
     add 46dd441  add more checks
     new d81927c  Check docker-build and add required_signatures

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d1dab35)
            \
             N -- N -- N   refs/heads/elizabeth/add-more-more-checks (d81927c)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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.


Summary of changes:
 .github/workflows/superset-e2e.yml         | 9 +++++++++
 .github/workflows/superset-python-misc.yml | 2 +-
 CONTRIBUTING.md                            | 2 +-
 superset-frontend/src/SqlLab/main.less     | 5 -----
 4 files changed, 11 insertions(+), 7 deletions(-)


[superset] 01/01: 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 d81927cf07ef8de7d28489223c45600d45c97237
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 }} )"