Skip to content

Commit af486d7

Browse files
authored
fix(IDX): change file output handling (#157)
1 parent 474ef14 commit af486d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reusable_workflows/repo_policies/check_external_changes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def main():
4949
repo = gh.repository(owner=env_vars["ORG"], repository=env_vars["REPO"])
5050

5151
# Get changed files
52-
changed_files = env_vars["CHANGED_FILES"].split(",")
52+
changed_files = env_vars["CHANGED_FILES"].split()
5353
print(f"Changed files: {changed_files}")
5454

5555
blacklist_files = get_blacklisted_files(repo)

0 commit comments

Comments
 (0)