Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Loading