[llvm] [Github][CI] Trigger `code-lint` for clang-tidy documentations (PR #173700)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 26 20:44:34 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-github-workflow
Author: mitchell (zeyi2)
<details>
<summary>Changes</summary>
Previously we added `doc8` to `code-lint` workflow. However, PRs contain only documentation changes won't trigger this workflow. This PR fixes the problem.
---
Full diff: https://github.com/llvm/llvm-project/pull/173700.diff
1 Files Affected:
- (modified) .github/workflows/pr-code-lint.yml (+1)
``````````diff
diff --git a/.github/workflows/pr-code-lint.yml b/.github/workflows/pr-code-lint.yml
index 64fecd26af004..b314f740e59de 100644
--- a/.github/workflows/pr-code-lint.yml
+++ b/.github/workflows/pr-code-lint.yml
@@ -10,6 +10,7 @@ on:
- 'users/**'
paths:
- 'clang-tools-extra/clang-tidy/**'
+ - 'clang-tools-extra/docs/clang-tidy/**'
- '.github/workflows/pr-code-lint.yml'
jobs:
``````````
</details>
https://github.com/llvm/llvm-project/pull/173700
More information about the llvm-commits
mailing list