We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dba6f0b commit 9b9df4cCopy full SHA for 9b9df4c
1 file changed
.github/workflows/check-qldoc.yml
@@ -30,7 +30,8 @@ jobs:
30
run: |
31
EXIT_CODE=0
32
# TODO: remove the shared exception from the regex when coverage of qlpacks without dbschemes is supported
33
- changed_lib_packs="$(git diff --name-only --diff-filter=ACMRT HEAD^ HEAD | { grep -Po '^(?!(shared))[a-z]*/ql/lib' || true; } | sort -u)"
+ # TODO: remove the actions exception once https://github.com/github/codeql-team/issues/3656 is fixed
34
+ changed_lib_packs="$(git diff --name-only --diff-filter=ACMRT HEAD^ HEAD | { grep -Po '^(?!0(shared|actions))[a-z]*/ql/lib' || true; } | sort -u)"
35
for pack_dir in ${changed_lib_packs}; do
36
lang="${pack_dir%/ql/lib}"
37
codeql generate library-doc-coverage --output="${RUNNER_TEMP}/${lang}-current.txt" --dir="${pack_dir}"
0 commit comments