From 9cab0b53ad862fd3bdc700f4c8290333a95ff9b2 Mon Sep 17 00:00:00 2001 From: dmathieu <42@dmathieu.com> Date: Wed, 11 Sep 2024 10:16:50 +0200 Subject: [PATCH] exclude profiles service from breaking changes too --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 15db8f9f..bf08dc84 100644 --- a/Makefile +++ b/Makefile @@ -163,7 +163,7 @@ gen-ruby: # The Profiling protocol is still experimental. So it is excluded from the breaking-change check. .PHONY: breaking-change breaking-change: - $(BUF) breaking --against $(BUF_AGAINST) --config '{"version":"v1","breaking":{"ignore":["opentelemetry/proto/profiles"]}}' $(BUF_FLAGS) + $(BUF) breaking --against $(BUF_AGAINST) --config '{"version":"v1","breaking":{"ignore":["opentelemetry/proto/profiles", "opentelemetry/proto/collector/profiles"]}}' $(BUF_FLAGS) ALL_DOCS := $(shell find . -type f -name '*.md' -not -path './.github/*' -not -path './node_modules/*' | sort)