diff --git a/.gitea/workflows/test-pr.yml b/.gitea/workflows/test-pr.yml index 298107f..606212d 100644 --- a/.gitea/workflows/test-pr.yml +++ b/.gitea/workflows/test-pr.yml @@ -57,4 +57,7 @@ jobs: with: input: values.yaml - name: Verify values.schema.json - run: git diff --exit-code --name-only values.schema.json \ No newline at end of file + run: | + if ! git diff --exit-code --name-only values.schema.json; then + echo "Please update the values.schema.json and be carefully of breaking changes!" 2&>1 + fi \ No newline at end of file