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: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,14 @@ work/
.venv/
.agents/pr-review/
.slim/deepwork/
# BEGIN oh-my-opencode-slim worktrees
# .slim/worktrees/ holds live git worktrees
.slim/worktrees/
.slim/worktrees.json
# END oh-my-opencode-slim worktrees

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor (style): The .gitignore changes (worktrees.json and clonedeps) are unrelated to the renovate grouping change and should be removed or kept in a separate PR.

Automated finding from AI PR review.

# BEGIN oh-my-opencode-slim clonedeps
.slim/clonedeps/repos/
# END oh-my-opencode-slim clonedeps
.DS_Store
Thumbs.db
__pycache__/
Expand Down
9 changes: 5 additions & 4 deletions .renovaterc.json5
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,13 @@
minimumGroupSize: 2
},
{
// installer image (talosupgrade.yaml) + talosctl via aqua (.mise.toml) and github-releases
// (image-pull.yaml) all track the same Talos release — one PR instead of three
// installer image (talosupgrade.yaml) + talosctl via github-releases (image-pull.yaml)
// all track the same Talos release — one PR instead of two
description: "Talos Group",
groupName: "talos",
matchDatasources: ["docker", "aqua", "github-releases"],
matchPackageNames: ["/siderolabs\\/(talos|installer)/"]
matchDatasources: ["docker", "github-releases"],

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Major (bug): Removing 'aqua' from matchDatasources means talosctl updates via aqua (.mise.toml) will no longer be grouped into the Talos PR, so the PR does not achieve its stated goal of grouping all talos packages into a single PR.

Automated finding from AI PR review.

// matches all siderolabs/* packages (talos, installer, etc.)
matchPackageNames: ["/siderolabs\\/"],
Comment thread
coderabbitai[bot] marked this conversation as resolved.
},
{
description: "Rook-Ceph Group",
Expand Down