Skip to content

Commit

Permalink
Fix redirection for selective chekcs for all workflows (#28518)
Browse files Browse the repository at this point in the history
The #28514 added traceback handling for selective checks but the
redirection had not been fixed in few other workflows where it
was used.
  • Loading branch information
potiuk committed Dec 21, 2022
1 parent d9ae90f commit 4615d17
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_dockerhub_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand Down

0 comments on commit 4615d17

Please sign in to comment.