Skip to content

Bump httpx from 0.28.0 to 0.28.1 #287

Bump httpx from 0.28.0 to 0.28.1

Bump httpx from 0.28.0 to 0.28.1 #287

Workflow file for this run

name: on pull request
on:
pull_request_target:
types:
- opened
- synchronize
- ready_for_review
- reopened
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
# Run the unit tests on every PR, even from external repos
unit_tests:
uses: ./.github/workflows/tox.yaml
# When the PR is from a branch of the main repo, publish images and charts
publish_images:
uses: ./.github/workflows/publish-images.yaml
with:
ref: ${{ github.event.pull_request.head.sha }}
secrets: inherit
if: github.repository == 'azimuth-cloud/azimuth-schedule-operator'
publish_charts:
needs: [publish_images]
uses: ./.github/workflows/publish-charts.yaml
with:
ref: ${{ github.event.pull_request.head.sha }}
secrets: inherit
if: github.repository == 'azimuth-cloud/azimuth-schedule-operator'
# The functional tests require the runner image, so we can only run them
# once the image has been built, and on PRs from the main repo
functional_tests:
needs: [publish_images]
uses: ./.github/workflows/functional.yaml
with:
ref: ${{ github.event.pull_request.head.sha }}
secrets: inherit
if: github.repository == 'azimuth-cloud/azimuth-schedule-operator'