Skip to content

Commit c664cb4

Browse files
committed
fix: add git status check for Velero manifests update in NAC
Signed-off-by: Tiger Kaovilai <[email protected]>
1 parent a1ddbc7 commit c664cb4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@ jobs:
9090
- name: Check Non Admin Controller (NAC) manifests
9191
working-directory: ./oadp-operator
9292
run: |
93+
git status --short
9394
NON_ADMIN_CONTROLLER_PATH=../oadp-non-admin make update-non-admin-manifests
95+
git status --short
9496
if test -n "$(git status --short)"; then
9597
echo "::error::run 'make update-non-admin-manifests' in OADP repository to update Non Admin Controller (NAC) manifests"
9698
exit 1
@@ -99,8 +101,10 @@ jobs:
99101
- name: Check Velero manifests
100102
working-directory: ./oadp-non-admin
101103
run: |
104+
git status
102105
OADP_OPERATOR_PATH=../oadp-operator make update-velero-manifests
103106
if test -n "$(git status --short)"; then
107+
git status
104108
echo "::error::run 'make update-velero-manifests' in Non Admin Controller (NAC) repository to update Velero manifests"
105109
exit 1
106110
fi

0 commit comments

Comments
 (0)