From 5889de402465c928eadae086ff5ea82e34c4427e Mon Sep 17 00:00:00 2001 From: Chai Bot Date: Fri, 4 Sep 2026 14:57:48 +0000 Subject: [PATCH] Boilerplate: Update to a8a3172411f3f2b8848f64333843e028ef4b3ed1 Conventions: - openshift/golang-osd-operator: Update - openshift/golang-osd-e2e: No change --- https://github.com/openshift/boilerplate/compare/b361d1a597f5a3a840ccea7efd40dc92f8cfa789...a8a3172411f3f2b8848f64333843e028ef4b3ed1 commit: 39b903e8c5db27cee7bb5b2dcce9ff4b5a07da5e 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: c678988174f35841a156cc2bba88d043b84cea9f author: red-hat-konflux[bot] chore(deps): update registry.access.redhat.com/ubi8/ubi-minimal:latest docker digest to d9beb74 Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> commit: 1542cb9a6f953091ea36868f18ef42542103dba7 author: Bo Meng Add shared CodeRabbit configuration --- .coderabbit.yaml | 4 ++++ ...a-operator-agentic-sdlc-check-pull-request.yaml | 2 +- boilerplate/_data/last-boilerplate-commit | 2 +- .../openshift/golang-osd-operator/.coderabbit.yaml | 14 ++++++++++++++ boilerplate/openshift/golang-osd-operator/update | 4 ++++ 5 files changed, 24 insertions(+), 2 deletions(-) create mode 100644 boilerplate/openshift/golang-osd-operator/.coderabbit.yaml diff --git a/.coderabbit.yaml b/.coderabbit.yaml index dd4125d0..ae0cf3b2 100644 --- a/.coderabbit.yaml +++ b/.coderabbit.yaml @@ -1,9 +1,13 @@ inheritance: true reviews: path_filters: + # Exclude boilerplate changes from review + - "!boilerplate/**" + # Exclude build artifacts and dependencies - "!build/**" - "!.venv/**" + - "!vendor/**" # Exclude test fixtures - "!**/testdata/**" diff --git a/.tekton/managed-node-metadata-operator-agentic-sdlc-check-pull-request.yaml b/.tekton/managed-node-metadata-operator-agentic-sdlc-check-pull-request.yaml index f9ac779f..a86a0b6d 100644 --- a/.tekton/managed-node-metadata-operator-agentic-sdlc-check-pull-request.yaml +++ b/.tekton/managed-node-metadata-operator-agentic-sdlc-check-pull-request.yaml @@ -43,7 +43,7 @@ spec: - name: url value: https://github.com/openshift/boilerplate - name: revision - value: b361d1a597f5a3a840ccea7efd40dc92f8cfa789 + value: a8a3172411f3f2b8848f64333843e028ef4b3ed1 - name: pathInRepo value: pipelines/agentic-sdlc-check/pipeline.yaml status: {} diff --git a/boilerplate/_data/last-boilerplate-commit b/boilerplate/_data/last-boilerplate-commit index 1d4e057b..d198b673 100644 --- a/boilerplate/_data/last-boilerplate-commit +++ b/boilerplate/_data/last-boilerplate-commit @@ -1 +1 @@ -b361d1a597f5a3a840ccea7efd40dc92f8cfa789 +a8a3172411f3f2b8848f64333843e028ef4b3ed1 diff --git a/boilerplate/openshift/golang-osd-operator/.coderabbit.yaml b/boilerplate/openshift/golang-osd-operator/.coderabbit.yaml new file mode 100644 index 00000000..ae0cf3b2 --- /dev/null +++ b/boilerplate/openshift/golang-osd-operator/.coderabbit.yaml @@ -0,0 +1,14 @@ +inheritance: true +reviews: + path_filters: + # Exclude boilerplate changes from review + - "!boilerplate/**" + + # Exclude build artifacts and dependencies + - "!build/**" + - "!.venv/**" + - "!vendor/**" + + # Exclude test fixtures + - "!**/testdata/**" + - "!**/.test-fixtures/**" diff --git a/boilerplate/openshift/golang-osd-operator/update b/boilerplate/openshift/golang-osd-operator/update index ff479267..8a625a93 100755 --- a/boilerplate/openshift/golang-osd-operator/update +++ b/boilerplate/openshift/golang-osd-operator/update @@ -14,6 +14,10 @@ source $CONVENTION_ROOT/_lib/common.sh echo "Copying .codecov.yml to your repository root." cp ${HERE}/.codecov.yml $REPO_ROOT +# Add CodeRabbit configuration +echo "Copying .coderabbit.yaml to your repository root." +cp ${HERE}/.coderabbit.yaml $REPO_ROOT + # Add OWNERS_ALIASES to $REPO_ROOT echo "Copying OWNERS_ALIASES to your repository root." cp -L ${HERE}/OWNERS_ALIASES $REPO_ROOT