From df4ad13f40d838d653c1b88c175f8749bfd0ca70 Mon Sep 17 00:00:00 2001 From: Chai Bot Date: Mon, 14 Sep 2026 14:47:55 +0000 Subject: [PATCH] Boilerplate: Update to 195c29d18279f69ea5b4e53ae9d90a795c27144a Conventions: - openshift/golang-osd-e2e: Update --- https://github.com/openshift/boilerplate/compare/d0a07945463759cf0e3489cb46737dae08d66713...195c29d18279f69ea5b4e53ae9d90a795c27144a commit: be413df8469c8c1789fb3f0013916d15968cc570 author: red-hat-konflux[bot] chore(deps): update konflux references Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> commit: 33ccfb0cc3a8704c62b9305465a057d088e1d85c author: red-hat-konflux[bot] chore(deps): update registry.access.redhat.com/ubi9 docker tag to v9.8-1788939089 Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> commit: 70aee561a8eed2139e62363447caafb10331587e author: Josh Branham Enable automated UBI9 image updates commit: 84a9e4c8a7d5363056053e0a5965b33886418343 author: red-hat-konflux[bot] chore(deps): update konflux references to v0.10.3 Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> commit: 7af05f59f68125577dd4aac14d0a07140ade0403 author: red-hat-konflux[bot] chore(deps): update konflux references Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> commit: 80db9f27d258fbb84d4bc839002d892158094243 author: red-hat-konflux[bot] chore(deps): update registry.access.redhat.com/ubi8/ubi-minimal:latest docker digest to 4e4bb2f Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> commit: 1ed0c95a095ebad96b28569a840d73f3732f9534 author: red-hat-konflux[bot] chore(deps): update konflux references to fa53ef4 Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> commit: bce175bc09f812c536e13f776097936797c88704 author: Bo Meng One time sync for custom CodeRabbit configuration --- boilerplate/_data/last-boilerplate-commit | 2 +- boilerplate/openshift/golang-osd-e2e/.coderabbit.yaml | 5 +++++ boilerplate/openshift/golang-osd-e2e/update | 8 ++++++++ 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 boilerplate/openshift/golang-osd-e2e/.coderabbit.yaml diff --git a/boilerplate/_data/last-boilerplate-commit b/boilerplate/_data/last-boilerplate-commit index 53a31b14..db9c1a3d 100644 --- a/boilerplate/_data/last-boilerplate-commit +++ b/boilerplate/_data/last-boilerplate-commit @@ -1 +1 @@ -d0a07945463759cf0e3489cb46737dae08d66713 +195c29d18279f69ea5b4e53ae9d90a795c27144a diff --git a/boilerplate/openshift/golang-osd-e2e/.coderabbit.yaml b/boilerplate/openshift/golang-osd-e2e/.coderabbit.yaml new file mode 100644 index 00000000..e4fdc1ba --- /dev/null +++ b/boilerplate/openshift/golang-osd-e2e/.coderabbit.yaml @@ -0,0 +1,5 @@ +inheritance: true +reviews: + path_filters: + # Boilerplate-managed: skip review of boilerplate changes + - "!boilerplate/**" diff --git a/boilerplate/openshift/golang-osd-e2e/update b/boilerplate/openshift/golang-osd-e2e/update index fbd86675..4e3a06aa 100755 --- a/boilerplate/openshift/golang-osd-e2e/update +++ b/boilerplate/openshift/golang-osd-e2e/update @@ -10,6 +10,14 @@ source $CONVENTION_ROOT/_lib/common.sh # Expect POST [[ "$1" == "POST" ]] || err "Got a parameter I don't understand: '$1'. Did the infrastructure change?" +# Seed CodeRabbit configuration without overwriting repo customizations. +if [[ ! -f "${REPO_ROOT}/.coderabbit.yaml" ]]; then + echo "Copying .coderabbit.yaml to your repository root." + cp "${HERE}/.coderabbit.yaml" "${REPO_ROOT}/.coderabbit.yaml" +else + echo ".coderabbit.yaml already exists; leaving it unchanged." +fi + REPO_ROOT=$(git rev-parse --show-toplevel) OPERATOR_NAME=$(sed -n 's/.*OperatorName .*=.*"\([^"]*\)".*/\1/p' "${REPO_ROOT}/config/config.go") GO_MODULE_PATH=$(awk '/^module / { print $2; exit }' "${REPO_ROOT}/go.mod")