-
Notifications
You must be signed in to change notification settings - Fork 0
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
chore: adds renovate config #19
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"extends": [ | ||
"config:recommended", | ||
"github>aquaproj/aqua-renovate-config#2.6.0" | ||
], | ||
"schedule": ["before 5am on Monday"], | ||
"baseBranches": ["main", "master"], | ||
"labels": ["auto-upgrade"], | ||
"dependencyDashboardAutoclose": true, | ||
"terraform": { | ||
"ignorePaths": [ | ||
"**/context.tf", | ||
] | ||
}, | ||
} | ||
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. 💡 Codebase verification Move Renovate configuration file to the standard location The Renovate configuration file is currently located at
🔗 Analysis chainVerify Renovate configuration file location The configuration looks good overall, but let's verify if it's in the standard location that Renovate expects. The previous command had an error, so let's try a different approach to verify the location. The standard locations for Renovate configuration are:
Let's check these locations with a different command. 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check if renovate config exists in standard locations
fd -g 'renovate.json*' -g '.renovaterc*' .
Length of output: 103 Script: #!/bin/bash
# Let's try a different approach to find the renovate configuration file
find . -type f -name 'renovate.json*' -o -name '.renovaterc*'
# Also check the content of .github directory specifically
ls -la .github/
Length of output: 471 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. Good callout. I will move it! 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. @Gowiem, thanks for the prompt response! Looking forward to the updated config file. Let me know if there’s anything else you’d like me to review or assist with. |
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.
💡 Codebase verification
Remove 'master' from baseBranches as 'main' is the default branch
The repository is using
main
as the default branch, so includingmaster
inbaseBranches
is unnecessary and may cause confusion. Consider updating the configuration to only target the active default branch.🔗 Analysis chain
Verify primary branch naming convention
The configuration targets both
main
andmaster
branches. This might indicate inconsistent branch naming across repositories.🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 82
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.
We have repositories that are still on master. This is intended to be a shared config for all repositories. I'm just trying it out here. You can safely ignore this.
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.
@Gowiem, understood! We’ll ignore this suggestion for now. Thanks for clarifying that some of your repositories still use the master branch.
✏️ Learnings added