Skip to content

Commit

Permalink
Skip building CI image when change does not touch python code (#45281)
Browse files Browse the repository at this point in the history
In very simple changes we should skip building ci image altogether.
This had been missing condition in one of the earlier refactors.

Follow-up after #45266
  • Loading branch information
potiuk authored Dec 30, 2024
1 parent 03c2494 commit 1e56eb2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ jobs:
constraints-branch: ${{ needs.build-info.outputs.default-constraints-branch }}
docker-cache: ${{ needs.build-info.outputs.docker-cache }}
disable-airflow-repo-cache: ${{ needs.build-info.outputs.disable-airflow-repo-cache }}
if: needs.build-info.outputs.ci-image-build == 'true'

additional-ci-image-checks:
name: "Additional CI image checks"
Expand Down

0 comments on commit 1e56eb2

Please sign in to comment.