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