Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20570eb commit b2ba8e6Copy full SHA for b2ba8e6
1 file changed
.github/workflows/qhelp.yml
@@ -16,7 +16,11 @@ jobs:
16
- name: Determine changed files
17
id: changes
18
run: |
19
- echo "::set-output name=qhelp_files::$(git diff --name-only --diff-filter=ACMRT HEAD~1 HEAD | grep .qhelp$ | xargs)"
+ echo -n "::set-output name=qhelp_files::"
20
+ (git diff --name-only --diff-filter=ACMRT HEAD~1 HEAD | grep .qhelp$ | grep -v .inc.qhelp;
21
+ git diff --name-only --diff-filter=ACMRT HEAD~1 HEAD | grep .inc.qhelp$ | xargs -rn1 basename | xargs -rn1 git grep -l) |
22
+ sort -u | xargs
23
+
24
- name: Fetch CodeQL
25
26
LATEST=$(gh release list --repo https://github.com/github/codeql-cli-binaries | cut -f 1 | sort --version-sort | tail -1)
0 commit comments