Skip to content

Commit

Permalink
Typo Fix to Get JavaScript Code Scans Working (#15)
Browse files Browse the repository at this point in the history
The new repos.json creation path introduced a bug that prevented
JavaScript code scans from happening. To fix this the word `javscript`
was changed to `javascript`. This fix has been applied to affected PRs
and is what is being run for GHAS enablement currently.
  • Loading branch information
ahernandez411 authored Mar 15, 2023
1 parent e79879c commit b9f013c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
problems-seen.txt
prs.testing.txt
bin/workflows/code-analysis.yml
working-dir
Expand Down
2 changes: 1 addition & 1 deletion py_helpers/repos_batcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self) -> None:
self.name_org_repo_lang_results = "all-results-for-orgs-and"
self.batch_repo_limit = self.envs.repos_per_batch
self.code_scan_langs = {
"javascript": "javscript",
"javascript": "javsacript",
"java": "java",
"go": "go",
"python": "python",
Expand Down

0 comments on commit b9f013c

Please sign in to comment.