From ca05637a71798cfc83512041d370d7660bfca838 Mon Sep 17 00:00:00 2001 From: Tiger Kaovilai Date: Tue, 17 Jun 2025 17:04:17 -0400 Subject: [PATCH] test ghactions Signed-off-by: Tiger Kaovilai --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6539e0a7..3ed022c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -90,7 +90,9 @@ jobs: - name: Check Non Admin Controller (NAC) manifests working-directory: ./oadp-operator run: | + git status NON_ADMIN_CONTROLLER_PATH=../oadp-non-admin make update-non-admin-manifests + git status if test -n "$(git status --short)"; then echo "::error::run 'make update-non-admin-manifests' in OADP repository to update Non Admin Controller (NAC) manifests" exit 1 @@ -99,8 +101,10 @@ jobs: - name: Check Velero manifests working-directory: ./oadp-non-admin run: | + git status OADP_OPERATOR_PATH=../oadp-operator make update-velero-manifests if test -n "$(git status --short)"; then + git status echo "::error::run 'make update-velero-manifests' in Non Admin Controller (NAC) repository to update Velero manifests" exit 1 fi