From 398927a8b838f49a80c2dea04f24268e442794b9 Mon Sep 17 00:00:00 2001 From: fullsend-code <278716306+fullsend-ai-coder[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2026 03:07:36 +0000 Subject: [PATCH] fix(#330): add ubi9/ubi-minimal to dependabot ignore list The boilerplate update script manages the UBI base image tag via skopeo inspect, making Dependabot Docker monitoring redundant for ubi9/ubi-minimal. This caused 9+ consecutive PRs that all failed ci/prow/validate because the boilerplate overwrites the proposed tag during make generate, dirtying the checkout. Add ubi9/ubi-minimal to the existing ignore list in .github/dependabot.yml, following the same pattern used for app-sre/boilerplate and openshift4/ose-operator-registry. Closes #330 --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8695778..7ed0331 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -17,3 +17,5 @@ updates: # don't upgrade boilerplate via these means - dependency-name: "openshift4/ose-operator-registry" # don't upgrade ose-operator-registry via these means + - dependency-name: "ubi9/ubi-minimal" + # UBI base image tag is managed by boilerplate update script via skopeo inspect