From 4615d1768cbe0b1287000bcaa2925a5c5fb80f1d Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Wed, 21 Dec 2022 11:09:42 +0100 Subject: [PATCH] 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 6b50bd9e1b78f..e5f71f15dd22c 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 c195a18f174df..bb190302315ce 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 a9f59b20dcaa6..2463943d18fbc 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 }}"