Skip to content

Commit c0687f3

Browse files
committed
Reverse logic?
1 parent 4808812 commit c0687f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/verify-testing-docs-on-change.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
fi
4646
4747
# Check if the documentation file has changed
48-
if ! diff -q testing-documentation-before.json shiny/pytest/_generate/_data/testing-documentation.json > /dev/null 2>&1; then
48+
if diff -q testing-documentation-before.json shiny/pytest/_generate/_data/testing-documentation.json > /dev/null 2>&1; then
4949
echo "docs_changed=true" >> $GITHUB_OUTPUT
5050
echo "The generated documentation is out of sync with the current controller changes."
5151
echo "\n\n"

0 commit comments

Comments
 (0)