diff --git a/.github/workflows/check_dependencies.yml b/.github/workflows/check_dependencies.yml index ece2b93002ee..879d1a67b54a 100644 --- a/.github/workflows/check_dependencies.yml +++ b/.github/workflows/check_dependencies.yml @@ -31,4 +31,4 @@ jobs: run: chmod +x find_dependencies.py - name: Run Python script - run: python find_dependencies.py \ No newline at end of file + run: python find_dependencies.py edx-platform --org edx \ No newline at end of file diff --git a/scripts/find_dependencies.py b/scripts/find_dependencies.py index c8133460f77e..ba2b314a1f56 100644 --- a/scripts/find_dependencies.py +++ b/scripts/find_dependencies.py @@ -361,7 +361,7 @@ def main(dirs=None, org=None): #firsts = urls_in_orgs(repo_urls, FIRST_PARTY_ORGS) #write_list(WORK_DIR / "first_party_urls.txt", firsts) - seconds = urls_in_orgs(repo_urls, "edx") + seconds = urls_in_orgs(repo_urls, org) #write_list(WORK_DIR / "second_party_urls.txt", seconds) print("== DONE ==============")