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 4615d1768c Fix redirection for selective chekcs for all workflows 
(#28518)
4615d1768c is described below

commit 4615d1768cbe0b1287000bcaa2925a5c5fb80f1d
Author: Jarek Potiuk <[email protected]>
AuthorDate: Wed Dec 21 11:09:42 2022 +0100

    Fix redirection for selective chekcs for all workflows (#28518)
    
    The #28514 added traceback handling for selective checks but the
    redirection had not been fixed in few other workflows where it
    was used.
---
 .github/workflows/build-images.yml            | 2 +-
 .github/workflows/codeql-analysis.yml         | 2 +-
 .github/workflows/release_dockerhub_image.yml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/build-images.yml 
b/.github/workflows/build-images.yml
index 6b50bd9e1b..e5f71f15dd 100644
--- a/.github/workflows/build-images.yml
+++ b/.github/workflows/build-images.yml
@@ -151,7 +151,7 @@ jobs:
         env:
           PR_LABELS: "${{ 
steps.get-latest-pr-labels.outputs.pull-request-labels }}"
           COMMIT_REF: "${{ env.TARGET_COMMIT_SHA }}"
-        run: breeze ci selective-check 2>> ${GITHUB_OUTPUT}
+        run: breeze ci selective-check >> ${GITHUB_OUTPUT}
       - name: env
         run: printenv
         env:
diff --git a/.github/workflows/codeql-analysis.yml 
b/.github/workflows/codeql-analysis.yml
index c195a18f17..bb19030231 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -49,7 +49,7 @@ jobs:
         id: selective-checks
         env:
           COMMIT_REF: "${{ github.sha }}"
-        run: breeze ci selective-check 2>> ${GITHUB_OUTPUT}
+        run: breeze ci selective-check >> ${GITHUB_OUTPUT}
 
   analyze:
     name: Analyze
diff --git a/.github/workflows/release_dockerhub_image.yml 
b/.github/workflows/release_dockerhub_image.yml
index a9f59b20dc..2463943d18 100644
--- a/.github/workflows/release_dockerhub_image.yml
+++ b/.github/workflows/release_dockerhub_image.yml
@@ -57,7 +57,7 @@ jobs:
         uses: ./.github/actions/breeze
       - name: Selective checks
         id: selective-checks
-        run: breeze ci selective-check 2>> ${GITHUB_OUTPUT}
+        run: breeze ci selective-check >> ${GITHUB_OUTPUT}
   release-images:
     timeout-minutes: 120
     name: "Release images: ${{ github.event.inputs.airflowVersion }}, ${{ 
matrix.python-version }}"

Reply via email to