-
Notifications
You must be signed in to change notification settings - Fork 41
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
Release v1.4.1 #2263
base: main
Are you sure you want to change the base?
Release v1.4.1 #2263
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
# Files stored in `app` directory | ||
directory: "/sample/" | ||
schedule: | ||
interval: "daily" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
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. [Low]Use semantically meaningful names for variables and fields Descriptive and context-specific names for variables and fields make the code easy to understand and maintain. Rename the field/package to reflect its role in the module |
||
# Files stored in `app` directory | ||
directory: "/sample/" | ||
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. [High]Avoid using absolute paths for directories in pipelines Using absolute paths in pipelines is error-prone, especially when the pipeline is shared or transferred across different systems. Use relative paths instead of absolute paths while defining directories in pipelines. Consider documenting the directory structure and path dependencies clearly. |
||
schedule: | ||
interval: "daily" |
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.
[High]Use a relative file path instead of an absolute path
The current configuration is using an absolute path for the 'directory' field, which could cause problems when this configuration is deployed to different environments. Replace the absolute path in the 'directory' field with a relative path.