Skip to content

Finalize generation script #7

Finalize generation script

Finalize generation script #7

Workflow file for this run

name: Verify updated gitops resources
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
verify-updated-gitops-resources:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Run generate.sh and check if the ai-lab-app based charts are up-to-date
run: |
bash generate.sh
if [[ ! -z $(git status -s) ]]
then
echo 'The script `./generate.sh` did introduce changes, which should ideally be checked in as part of the PR.'
git status
exit 1
fi