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 fa0ed08 commit 4c2c78bCopy full SHA for 4c2c78b
.github/workflows/check-docs.yml
@@ -36,7 +36,12 @@ jobs:
36
- name: Run doc generation
37
run: yarn docgen:all
38
- name: Check for changes in docs-devsite dir (fail if so)
39
- run: git diff --exit-code docs-devsite
+ run: |
40
+ if [[ -n "$(git status docs-devsite --porcelain)" ]]; then
41
+ echo "Unstaged changes detected:"
42
+ git status -s
43
+ exit 1
44
+ fi
45
- name: Reference documentation needs to be updated. See message below.
46
if: ${{ failure() }}
47
run: echo "Changes in this PR affect the reference docs. Run \`yarn docgen:all\` locally to regenerate docs and add them to this PR."
0 commit comments