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

ash pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v1-10-test by this push:
     new 179fbb6  Cache 1 10 ci images (#8955) (#8959)
179fbb6 is described below

commit 179fbb6e63f068076a171302c328fc68c7a6071d
Author: Daniel Imberman <daniel.imber...@gmail.com>
AuthorDate: Thu May 21 15:11:50 2020 -0700

    Cache 1 10 ci images (#8955) (#8959)
    
    * Push CI images to Docker packcage cache for v1-10 branches
    
    This is done as a commit to master so that we can keep the two branches
    in sync
    
    Co-Authored-By: Ash Berlin-Taylor <ash_git...@firemirror.com>
    
    * Run Github Actions against v1-10-stable too
    
    Co-authored-by: Ash Berlin-Taylor <ash_git...@firemirror.com>
    (cherry picked from commit 90a07d81845f033fd9875d4b0393052b767eac46)
---
 .github/workflows/ci.yml | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 33846c2..a18f64a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -20,9 +20,9 @@
 name: CI Build
 on:
   push:
-    branches: ['master', 'v1-10-test']
+    branches: ['master', 'v1-10-test', 'v1-10-stable']
   pull_request:
-    branches: ['master', 'v1-10-test']
+    branches: ['master', 'v1-10-test', 'v1-10-stable']
 env:
   MOUNT_LOCAL_SOURCES: "false"
   FORCE_ANSWER_TO_QUESTIONS: "yes"
@@ -277,7 +277,10 @@ jobs:
       - requirements
       - build-prod-image
       - docs
-    if: github.ref == 'refs/heads/master' && github.event_name != 'schedule'
+    if: |
+      (github.ref == 'refs/heads/master' ||
+      github.ref == 'refs/heads/v1-10-test' ) &&
+      github.event_name != 'schedule'
     strategy:
       matrix:
         python-version: [2.7, 3.5, 3.6, 3.7]

Reply via email to