Commits
6aaf0483f0
Name already in use
Commits on Nov 20, 2020
-
Merge branch 'main' into fix-typos
Eric Cornelissen committedNov 20, 2020 Copy the full SHA 6aaf048View commit details -
Merge pull request #310 from ericcornelissen/eslint-rule/no-shadow
Update code so "no-shadow" passes
Chris Gavin authored and GitHub committedNov 20, 2020 Unverified
No user is associated with the committer email.Copy the full SHA c5d599eView commit details -
Merge branch 'main' into fix-typos
Eric Cornelissen committedNov 20, 2020 Unverified
No user is associated with the committer email.Copy the full SHA 6ed5c82View commit details -
Update spelling for autobuild to auto-built
Eric Cornelissen committedNov 20, 2020 Copy the full SHA 82ba92fView commit details -
Merge branch 'main' into eslint-rule/no-shadow
Chris Gavin authored and GitHub committedNov 20, 2020 Unverified
No user is associated with the committer email.Copy the full SHA 7091b81View commit details -
Merge pull request #314 from github/skip-integration-tests-prs-from-f…
…orks Skip Runner integration tests on pull requests from forks.
Chris Gavin authored and GitHub committedNov 20, 2020 Unverified
No user is associated with the committer email.Copy the full SHA 6d232b4View commit details -
Merge branch 'main' into skip-integration-tests-prs-from-forks
Chris Gavin authored and GitHub committedNov 20, 2020 Unverified
No user is associated with the committer email.Copy the full SHA b59d204View commit details -
Merge pull request #312 from ericcornelissen/fix-minor-code-mistakes
Two minor code fixes
Chris Gavin authored and GitHub committedNov 20, 2020 Unverified
No user is associated with the committer email.Copy the full SHA 0a05e95View commit details -
Skip Runner integration tests on pull requests from forks.
Chris Gavin committedNov 20, 2020 Copy the full SHA fd36becView commit details -
Merge branch 'main' into fix-minor-code-mistakes
Chris Gavin authored and GitHub committedNov 20, 2020 Copy the full SHA a04d948View commit details -
Eric Cornelissen committed
Nov 20, 2020 Copy the full SHA 35b0506View commit details -
Merge pull request #308 from github/simon-engledew/fast-fail
Abort CodeQL action if the status cannot be reported
Simon Engledew authored and GitHub committedNov 20, 2020 Unverified
No user is associated with the committer email.Copy the full SHA 31872f1View commit details -
Eric Cornelissen committed
Nov 20, 2020 Copy the full SHA 5416d4fView commit details -
Fix unused sorted value in update-release-branch
Fix a minor issue in the update-release-branch.py script that performs a call to `sorted` but doesn't use the output. Since `sorted` does not operate in place, the call is currently useless. As a result, the function `get_pr_for_commit` does not currently work as exected. I.e. it is expected to return the "first" (i.e. lowest PR number), but actually it returns the first in the list provided by GitHub.
Eric Cornelissen committedNov 20, 2020 Unverified
No user is associated with the committer email.Copy the full SHA cf8c79cView commit details -
Remove duplicate statement in tracer-config test
The tracer-config.test.js file contained a duplicate of the statement: process.env["SEMMLE_DEPTRACE_SOCKET"] = "abc"; one line apart. This removes the second instance of this statement.
Eric Cornelissen committedNov 20, 2020 Copy the full SHA 4e8634cView commit details -
Fix typos in Action config files
Eric Cornelissen committedNov 20, 2020 Unverified
No user is associated with the committer email.Copy the full SHA 512c07dView commit details -
- Rename "toolrunnner" (three 'n') to "toolrunner" - Rename "relativeFilepaht" to "relativeFilepath" - Fix various typos in documentation & comments - Fix typos in logs and test names
Eric Cornelissen committedNov 20, 2020 Copy the full SHA 85ea24bView commit details -
Merge branch 'main' into simon-engledew/fast-fail
Simon Engledew authored and GitHub committedNov 20, 2020 Copy the full SHA 6a45994View commit details
Commits on Nov 19, 2020
-
Merge branch 'main' into eslint-rule/no-shadow
Eric Cornelissen authored and GitHub committedNov 19, 2020 Unverified
No user is associated with the committer email.Copy the full SHA 992a0cfView commit details -
Eric Cornelissen committed
Nov 19, 2020 Unverified
No user is associated with the committer email.Copy the full SHA 847f4efView commit details -
Fix no shadow issues in upload-lib.ts
Rename one instance of "path" to avoid shadowing.
Eric Cornelissen committedNov 19, 2020 Unverified
No user is associated with the committer email.Copy the full SHA 483c94bView commit details -
Fix no shadow issues in fingerprints.ts
Rename various instances of "hash", shadowing the function with that name.
Eric Cornelissen committedNov 19, 2020 Unverified
No user is associated with the committer email.Copy the full SHA 7455994View commit details -
Fix no shadow issues in fingerprints.test.ts
Rename shadowing "uri" argument to the more explicit "artifactURI".
Eric Cornelissen committedNov 19, 2020 Unverified
No user is associated with the committer email.Copy the full SHA ffe9468View commit details -
Fix no shadow issues in config-utils.ts
Rename throwaway variable "suite" to "found" when assigned from "find". Rename local variable "path" to "newPath" as it is a modification of the "originalPath" provided to `validateAndSanitisePath`. Rename instances of "path" to more explicit varients "ignorePath" and "includePath". Maybe "ignoredPath" and "includedPath" are better names?
Eric Cornelissen committedNov 19, 2020 Unverified
No user is associated with the committer email.Copy the full SHA 2a2910eView commit details -
Fix no shadow issues in config-utils.test.ts
Rename "queries" variable in test cases to "testQueries" to avoid shadowing it in a subsequent helper function call (4 times). Rename "path" twice in a hlper function to "validPath" and "invalidPath" to avoid shadowing "path". The new names are more explicit.
Eric Cornelissen committedNov 19, 2020 Unverified
No user is associated with the committer email.Copy the full SHA 06e99f1View commit details -
Fix no shadow issues in codeql.ts
Two simple variable renames from "path" to "paths" since the types are arrays of strings (not just one string). One function definition inside a function moved outside that function to avoid shadowing the "options" argument.
Eric Cornelissen committedNov 19, 2020 Unverified
No user is associated with the committer email.Copy the full SHA 98ad63bView commit details -
Fix no shadow issues in api-client.ts
Duplicate use of "_" placeholder argument name. This change may conflict with #192.
Eric Cornelissen committedNov 19, 2020 Unverified
No user is associated with the committer email.Copy the full SHA b54c2aaView commit details -
Remove the "no-shadow": "off" override and replace it by enabling "@typescript-eslint/no-shadow" in the "rules" section, following the typescript-eslint docs: https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-shadow.md#how-to-use
Eric Cornelissen committedNov 19, 2020 Unverified
No user is associated with the committer email.Copy the full SHA 22f779cView commit details -
Merge pull request #222 from github/robertbrignull/go_build_trace
Check CODEQL_EXTRACTOR_GO_TRACE and treat Go as a traced language
Robert authored and GitHub committedNov 19, 2020 Unverified
No user is associated with the committer email.Copy the full SHA aafb457View commit details -
Merge branch 'main' into robertbrignull/go_build_trace
Robert authored and GitHub committedNov 19, 2020 Copy the full SHA 0b0bc35View commit details -
Scanning endpoint failures should not halt the scan
Simon Engledew committedNov 19, 2020 -
Merge remote-tracking branch 'origin/main' into simon-engledew/fast-fail
Simon Engledew committedNov 19, 2020 -
Merge pull request #309 from github/safe-which
Ensure unqualified program names are present on `PATH` before executing them.
Chris Gavin authored and GitHub committedNov 19, 2020 -
Fail processing on a 422 as well
Until there is a more robust versioning system it is probably safest to require endpoint compatiblity and not continue the action if there is a mismatch.
Simon Engledew committedNov 19, 2020 -
Simon Engledew committed
Nov 19, 2020