You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2021/07/26 11:10:31 UTC

[airflow] branch v2-1-test updated (ad6347a -> f18da85)

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

potiuk pushed a change to branch v2-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git.


 discard ad6347a  Converts the specification of branch for pushes to be flexible (#17065)
     new f18da85  Converts the specification of branch for pushes to be flexible (#17065)

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   (ad6347a)
            \
             N -- N -- N   refs/heads/v2-1-test (f18da85)

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:

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

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

potiuk pushed a commit to branch v2-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit f18da8576a6609ea266721336d644bdda871a933
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.
    
    (cherry picked from commit ab915201068919b02e8e00e723f127715f71a12b)
---
 .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