Skip to content
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

Disable GHA updates in dependabot and reduce frequency in renovatebot #5746

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@ updates:
interval: daily
labels: [ "changelog:dependencies" ]

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
labels: [ "changelog:dependencies" ]

- package-ecosystem: docker
directories:
- /cmd/agent
Expand Down
5 changes: 3 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@
},
{
"matchManagers": ["github-actions"],
"groupName": "github-actions deps"
"groupName": "github-actions deps",
"schedule": ["on the first day of the month"]
},
{
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["major", "patch", "digest"],
"matchUpdateTypes": ["patch", "digest"],
"enabled": false
},
{
Expand Down
Loading