We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19e010e commit b128c7cCopy full SHA for b128c7c
1 file changed
.github/workflows/qhelp-pr-preview.yml
@@ -16,20 +16,20 @@ jobs:
16
qhelp:
17
runs-on: ubuntu-latest
18
steps:
19
+ - uses: github/codeql/.github/actions/fetch-codeql@main
20
- uses: actions/checkout@v2
21
with:
22
ref: refs/pull/${{ github.event.number }}/merge
23
fetch-depth: 2
24
persist-credentials: false
25
+
26
- name: Determine changed files
27
id: changes
28
run: |
29
(git diff --name-only --diff-filter=ACMRT HEAD~1 HEAD | grep '.qhelp$' | grep -v '.inc.qhelp';
30
git diff --name-only --diff-filter=ACMRT HEAD~1 HEAD | grep '.inc.qhelp$' | xargs -d '\n' -rn1 basename | xargs -d '\n' -rn1 git grep -l) |
31
sort -u > "${{ runner.temp }}/paths.txt"
32
- - uses: ./.github/actions/fetch-codeql
-
33
- name: QHelp preview
34
35
if [ -s "${{ runner.temp }}/paths.txt" ]; then
0 commit comments