From 69441c6d0fdacef6e8709c77d1b4406731a82a0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charles-Edouard=20Br=C3=A9t=C3=A9ch=C3=A9?= Date: Wed, 20 Sep 2023 13:19:35 +0200 Subject: [PATCH] chore: add a required job to simplify branch protection (#8464) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Charles-Edouard Brétéché --- .github/workflows/conformance.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/conformance.yaml b/.github/workflows/conformance.yaml index 2fb731885d..125fd55319 100644 --- a/.github/workflows/conformance.yaml +++ b/.github/workflows/conformance.yaml @@ -831,3 +831,20 @@ jobs: set -e KYVERNO_EXPERIMENTAL=true kyverno fix test ./test/cli --save --compress make verify-cli-tests + + required: + needs: + - standard + - ttl + - force-failure-policy-ignore + - validating-admission-policies-v1alpha1 + - validating-admission-policies-v1beta1 + - validating-admission-policy-reports-v1alpha1 + - validating-admission-policy-reports-v1beta1 + - custom-sigstore + - default + - monitor-helm-secret-size + - check-tests + runs-on: ubuntu-latest + steps: + - run: echo "Required jobs success!" \ No newline at end of file