-
Notifications
You must be signed in to change notification settings - Fork 2
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
Update cron.yml #48
base: main
Are you sure you want to change the base?
Update cron.yml #48
Conversation
Signed-off-by: NxPKG <[email protected]>
🚨 gitStream Monthly Automation Limit Reached 🚨 Your organization has exceeded the number of pull requests allowed for automation with gitStream. To continue automating your PR workflows and unlock additional features, please contact LinearB. |
Reviewer's Guide by SourceryThis pull request modifies the No diagrams generated as the changes look simple and do not need a visual representation. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
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.
Hey @NxPKG - I've reviewed your changes - here's some feedback:
Overall Comments:
- Consider adding a comment explaining why these specific build space optimizations are necessary.
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
steps: | ||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v2 | ||
- name: Maximize build space | ||
uses: easimon/maximize-build-space@v10 | ||
with: | ||
root-reserve-mb: 32768 # vuln-list dirs + language repositories use more than 12GB of storage | ||
remove-android: "true" | ||
remove-docker-images: "true" | ||
remove-dotnet: "true" | ||
remove-haskell: "true" | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 |
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: Missing repository checkout step
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Maximize build space | |
uses: easimon/maximize-build-space@v10 | |
with: | |
root-reserve-mb: 32768 # vuln-list dirs + language repositories use more than 12GB of storage | |
remove-android: "true" | |
remove-docker-images: "true" | |
remove-dotnet: "true" | |
remove-haskell: "true" | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
steps: | |
- name: Maximize build space | |
uses: easimon/maximize-build-space@v10 | |
with: | |
root-reserve-mb: 32768 # vuln-list dirs + language repositories use more than 12GB of storage | |
remove-android: "true" | |
remove-docker-images: "true" | |
remove-dotnet: "true" | |
remove-haskell: "true" | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v3 |
* Update builder.go Signed-off-by: NxPKG <[email protected]> * Update README.md Signed-off-by: NxPKG <[email protected]> --------- Signed-off-by: NxPKG <[email protected]>
Addresses issue: #
Changes proposed in this pull request:
Summary by Sourcery
Updates the cron workflow to maximize build space by removing unnecessary components and reserving more space for the root directory.
Enhancements: