Skip to content
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: 4 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ updates:
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
day: "monday"
commit-message:
prefix: "chore"
prefix-development: "chore"
Expand All @@ -16,7 +17,8 @@ updates:
- package-ecosystem: "gomod"
directory: "/e2e-tests/tools"
schedule:
interval: "daily"
interval: "weekly"
day: "monday"
commit-message:
prefix: "chore"
prefix-development: "chore"
Expand Down
17 changes: 11 additions & 6 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
"timezone": "Etc/UTC",
"schedule": [
// Allowed syntax: https://docs.renovatebot.com/configuration-options/#schedule
// Between 3a.m. and 7a.m. every day, outside business hours across EU and US timezones.
"* 3-7 * * *",
// Fallback schedule. Each manager overrides this with a day-specific schedule
// to avoid multiple PRs being created at the same time (which causes merge conflicts).
"* 2-8 * * *",
],
// Tell Renovate not to update PRs when outside schedule.
"updateNotScheduled": false,
Expand All @@ -36,19 +37,23 @@
"includePaths": [
"konflux.Dockerfile",
],
"schedule": [
// Friday, 2a.m. to 8a.m. UTC.
"* 2-8 * * 5",
],
},
"rpm-lockfile": {
"automerge": true,
"schedule": [
// Duplicate the schedule here because Konflux global config may have a special override for rpm-lockfile.
"* 2-8 * * *",
// Saturday, 2a.m. to 8a.m. UTC.
"* 2-8 * * 6",
],
},
"tekton": {
"automerge": true,
"schedule": [
// Duplicate the schedule here because Konflux global config may have a special override for tekton.
"* 2-8 * * *",
// Sunday, 2a.m. to 8a.m. UTC.
"* 2-8 * * 0",
],
},
}
Loading