From 9c1285cf5b538ebebfffc903621df8a3c5f0b53c Mon Sep 17 00:00:00 2001 From: Mason Daugherty Date: Mon, 22 Sep 2025 21:19:53 -0400 Subject: [PATCH] chore(infra): fix ping pong pr labeler config (#33054) The title-based labeler was clearing all pre-existing labels (including the file-based ones) before adding its semantic labels. --- .github/pr-title-labeler.yml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.github/pr-title-labeler.yml b/.github/pr-title-labeler.yml index 1d0c71de5f9..0b78e4113a7 100644 --- a/.github/pr-title-labeler.yml +++ b/.github/pr-title-labeler.yml @@ -3,6 +3,7 @@ # Format: type(scope): description or type!: description (breaking) add-missing-labels: true +clear-prexisting: false include-commits: false include-title: true label-for-breaking-changes: breaking @@ -21,7 +22,24 @@ label-mapping: infra: ["chore", "ci", "build", "infra"] # Integration partners - detected by scope - integration: ["anthropic", "chroma", "deepseek", "exa", "fireworks", "groq", "huggingface", "mistralai", "nomic", "ollama", "openai", "perplexity", "prompty", "qdrant", "xai"] + integration: + [ + "anthropic", + "chroma", + "deepseek", + "exa", + "fireworks", + "groq", + "huggingface", + "mistralai", + "nomic", + "ollama", + "openai", + "perplexity", + "prompty", + "qdrant", + "xai", + ] # Releases release: ["release"]