You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by el...@apache.org on 2023/02/15 12:26:24 UTC

[airflow-client-python] branch main updated: Prepare to rename master branch to main (#70)

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

eladkal pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow-client-python.git


The following commit(s) were added to refs/heads/main by this push:
     new 7fa6125  Prepare to rename master branch to main (#70)
7fa6125 is described below

commit 7fa61255096a1c371d5197be6f7e74b581c120b0
Author: eladkal <45...@users.noreply.github.com>
AuthorDate: Wed Feb 15 14:26:16 2023 +0200

    Prepare to rename master branch to main (#70)
    
    * Prepare to rename master branch to main
    
    * fixes
---
 .asf.yaml                | 2 +-
 .github/workflows/ci.yml | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index 876e38a..76249d0 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -34,7 +34,7 @@ github:
     merge: false
     rebase: false
   protected_branches:
-    master:
+    main:
       required_pull_request_reviews:
         required_approving_review_count: 1
 notifications:
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ca2798a..049a01c 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -2,16 +2,16 @@ name: CI
 
 on:
   push:
-    branches: ['master', 'main']
+    branches: ['main']
   pull_request:
-    branches: ['master', 'main']
+    branches: ['main']
 
 jobs:
   lint:
     runs-on: ubuntu-latest
     steps:
       - name: Checkout
-        uses: actions/checkout@master
+        uses: actions/checkout@main
       - uses: actions/setup-python@v2
         with:
           python-version: '3.x'
@@ -26,7 +26,7 @@ jobs:
         python_version: ["3.7", "3.8", "3.9", "3.10"]
     steps:
       - name: Checkout
-        uses: actions/checkout@master
+        uses: actions/checkout@main
 
       - name: Set up Python
         uses: actions/setup-python@v2