Skip to content
Merged
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 renovate-shared-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,12 @@
"Disable Fedora OCI updates"
],
"matchManagers": [
"dockerfile"
"dockerfile",
"github-actions"
],
"matchDepNames": [
"quay.io/fedora/fedora"
"quay.io/fedora/fedora",
"quay.io/fedora/fedora-bootc"
],
Comment on lines 74 to 77

Choose a reason for hiding this comment

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

medium

For conciseness and better maintainability, you could use matchPackagePatterns with a regular expression to combine the two dependency names into a single pattern. This would also make it easier to add similar Fedora images in the future if needed.

      "matchPackagePatterns": [
        "^quay\\.io/fedora/fedora(-bootc)?$"
      ],

Copy link
Contributor Author

@p5 p5 Oct 9, 2025

Choose a reason for hiding this comment

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

While yes, it's more concise, I'd much prefer to maintain a list rather than regex. There's no need to introduce regex to this rule.

"enabled": false
}
Expand Down
Loading