-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NXDRIVE- : Fix alpha cleaup pipeline issue #4842
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -18,6 +18,8 @@ | |||||||||||||||||||
|
||||||||||||||||||||
def _load(): | ||||||||||||||||||||
"""Get initial versions.""" | ||||||||||||||||||||
print(f">>> Pwd: {os.getcwd()}") | ||||||||||||||||||||
print(f">>>>> list dir: {os.listdir(os.getcwd())}") | ||||||||||||||||||||
Comment on lines
+21
to
+22
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. suggestion (code_refinement): Debugging statements should be conditional or removed. Printing the current working directory and its contents can be useful for debugging but might clutter the output in production. Consider making these conditional based on a debug flag or removing them after use.
Suggested change
|
||||||||||||||||||||
|
||||||||||||||||||||
with open("versions.yml", encoding="utf-8") as yml: | ||||||||||||||||||||
return yaml.safe_load(yml.read()) or {} | ||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggestion (performance): Consider specifying types of pull request events.
It's good to specify paths for pull request triggers, but consider also specifying types of pull request activities (like 'opened', 'synchronize', etc.) to avoid unnecessary runs.