Skip to content

Commit e1e6362

Browse files
authored
🔧 Trigger RTD Build also on Changes in MLIR Directory (#1208)
## Description In #1091 the RTD build does not show the updates of the MLIR docs because the RTD build is skipped due to a misconfiguration of RTD. This PR fixes the configuration and also triggers an RTD build on changes in the MLIR header files. ## Checklist: <!--- This checklist serves as a reminder of a couple of things that ensure your pull request will be merged swiftly. --> - [ ] The pull request only contains commits that are focused and relevant to this change. - [ ] I have added appropriate tests that cover the new/changed functionality. - [ ] I have updated the documentation to reflect these changes. - [ ] I have added entries to the changelog for any noteworthy additions, changes, fixes, or removals. - [ ] I have added migration instructions to the upgrade guide (if needed). - [ ] The changes follow the project's style guidelines and introduce no new warnings. - [ ] The changes are fully tested and pass the CI checks. - [ ] I have reviewed my own code changes.
1 parent 5492309 commit e1e6362

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ build:
2323
- (git --no-pager log --pretty="tformat:%s -- %b" -1 | grep -viq "skip ci") || exit 183
2424
# Skip docs build if there are no changes related to docs
2525
- |
26-
if [ "$READTHEDOCS_VERSION_TYPE" = "external" ] && git diff --quiet origin/main -- bindings/ include/ docs/ python/ .github/contributing* .github/support* .readthedocs.yaml;
26+
if [ "$READTHEDOCS_VERSION_TYPE" = "external" ] && git diff --quiet origin/main -- bindings/ docs/ include/ mlir/include/ python/ .github/contributing* .github/support* .readthedocs.yaml;
2727
then
2828
exit 183;
2929
fi

0 commit comments

Comments
 (0)