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 2022/04/08 11:05:37 UTC

[airflow] branch main updated: Bring back limits on branches/tags builds in Airlfow repo (#22855)

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

potiuk 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 8b27e59669 Bring back limits on branches/tags builds in Airlfow repo (#22855)
8b27e59669 is described below

commit 8b27e59669cdc3cc8da669867c79fe4ba1503ac5
Author: Jarek Potiuk <ja...@polidea.com>
AuthorDate: Fri Apr 8 13:05:30 2022 +0200

    Bring back limits on branches/tags builds in Airlfow repo (#22855)
    
    The change #22542 accidentally removed limit on branches
    that trigger direct push workflows in CI.
    
    Currently the builds are also triggered when a new TAG is pushed
    not only when new branch is created and this is quite too much
    especially when we push multiple tags for providers :(
---
 .github/workflows/ci.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f6dfbf7d5b..38824665a2 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -22,6 +22,7 @@ on:  # yamllint disable-line rule:truthy
   schedule:
     - cron: '28 0 * * *'
   push:
+    branches: ['main', 'v[0-9]+-[0-9]+-test']
   pull_request:
     branches: ['main', 'v[0-9]+-[0-9]+-test', 'v[0-9]+-[0-9]+-stable']
 permissions: