Skip to content

Remove kube-rbac-proxy and related configuration #20

Remove kube-rbac-proxy and related configuration

Remove kube-rbac-proxy and related configuration #20

Workflow file for this run

---
name: Build and Push Images on Pull Requests
"on":
pull_request:
branches:
- main
paths:
- api/**
- cmd/**
- internal/**
- Dockerfile
types:
- opened
- reopened
- synchronize
- labeled
- unlabeled
permissions: {}
jobs:
run_unit_tests:
uses: ./.github/workflows/tests.yaml
permissions:
# required by downstream jobs
contents: read
build_and_push_image_for_prs:
needs: run_unit_tests
if: contains(github.event.pull_request.labels.*.name, 'build-image')
uses: ./.github/workflows/build-and-push-image.yaml
with:
environment: dev
image: prefect-operator-dev
# this is required so that the workflow can read secrets rom the environment
secrets: inherit