You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ur...@apache.org on 2021/07/19 02:51:56 UTC

[airflow] branch main updated: Converts the specification of branch for pushes to be flexible (#17065)

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

uranusjr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new ab91520  Converts the specification of branch for pushes to be flexible (#17065)
ab91520 is described below

commit ab915201068919b02e8e00e723f127715f71a12b
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Mon Jul 19 04:51:21 2021 +0200

    Converts the specification of branch for pushes to be flexible (#17065)
    
    We already have flexible configuration of branches in CI workflow
    but we missed them in build-images.yml - as a result direct pushes
    to v2-1-test branch are not building the images.
    
    This PR brings flexible branch specification to build-images
    workflow as well so that we will not have to update it
    even when we release 2.2, 3.0 etc. branches.
---
 .github/workflows/build-images.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build-images.yml b/.github/workflows/build-images.yml
index 363455c..433187c 100644
--- a/.github/workflows/build-images.yml
+++ b/.github/workflows/build-images.yml
@@ -22,7 +22,7 @@ on:  # yamllint disable-line rule:truthy
     - cron: '28 0 * * *'
   pull_request_target:
   push:
-    branches: ['main', 'v1-10-test', 'v1-10-stable', 'v2-0-test']
+    branches: ['main', 'v[0-9]+-[0-9]+-test']
 permissions:
   # all other permissions are set to none
   contents: read