We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb704e2 commit f3fa1b8Copy full SHA for f3fa1b8
.github/workflows/release.yml
@@ -70,6 +70,15 @@ jobs:
70
exit 1
71
fi
72
73
+ - name: Check that docs and schema are up to date
74
+ run: |
75
+ if diff -r -q docs docs-master > /dev/null && diff -r -q schema schema-master > /dev/null; then
76
+ echo "Docs and schema are up to date."
77
+ else
78
+ echo "Docs or schema are out of date. Please run 'scripts/update_docs_for_release.sh' and make a PR."
79
+ exit 1
80
+ fi
81
+
82
- name: Check for Blocking Issues/PRs
83
if: ${{ !inputs.ignore_blocks }}
84
id: check_blocks
0 commit comments