File tree Expand file tree Collapse file tree
tests/multi-language-repo/.github/codeql Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ def get_commit_difference(repo):
122122
123123# Is the given commit the automatic merge commit from when merging a PR
124124def is_pr_merge_commit (commit ):
125- return commit .committer .login == 'web-flow' and len (commit .parents ) > 1
125+ return commit .committer is not None and commit . committer .login == 'web-flow' and len (commit .parents ) > 1
126126
127127# Gets a copy of the commit message that should display nicely
128128def get_truncated_commit_message (commit ):
Original file line number Diff line number Diff line change @@ -118,8 +118,8 @@ jobs:
118118 with :
119119 config-file : " .github/codeql/codeql-config-packaging.yml"
120120 languages : javascript
121- # TODO: this is temporary until we have a release that includes the latest packaging work.
122- tools : https://github.com/dsp-testing/aeisenberg-codeql-action-packaging/releases/download/codeql-bundle-20210606 /codeql-bundle-linux64.tar.gz
121+ # TODO: this can be removed when cli v2.5.6 is released and available in the tool cache
122+ tools : https://github.com/dsp-testing/aeisenberg-codeql-action-packaging/releases/download/codeql-bundle-20210615 /codeql-bundle-linux64.tar.gz
123123
124124 - name : Build code
125125 shell : bash
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Pack testing in the CodeQL Action
33disable-default-queries : true
44packs :
55 javascript :
6- - dsp-testing/codeql-pack1@0.0.3
6+ - dsp-testing/codeql-pack1@0.0.4
77 - dsp-testing/codeql-pack2 # latest
88paths-ignore :
99 - tests
You can’t perform that action at this time.
0 commit comments