From fe670c8931a6a4a2cd59745e7ce9ce1fd5d24630 Mon Sep 17 00:00:00 2001 From: Jonathan Budzenski Date: Thu, 19 Feb 2026 14:05:55 -0600 Subject: [PATCH] [api docs] Add backport:skip label This is required for merging --- .buildkite/scripts/steps/api_docs/publish_api_docs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/scripts/steps/api_docs/publish_api_docs.sh b/.buildkite/scripts/steps/api_docs/publish_api_docs.sh index 7ab4ae6b3497c..6b2ce8e092a66 100755 --- a/.buildkite/scripts/steps/api_docs/publish_api_docs.sh +++ b/.buildkite/scripts/steps/api_docs/publish_api_docs.sh @@ -26,6 +26,6 @@ git commit -m "[api-docs] Daily api_docs build" git push origin "$branch" -prUrl=$(gh pr create --repo elastic/kibana --base main --head "$branch" --title "[api-docs] $(date +%F) Daily api_docs build" --body "Generated by $BUILDKITE_BUILD_URL" --label "release_note:skip" --label "docs") +prUrl=$(gh pr create --repo elastic/kibana --base main --head "$branch" --title "[api-docs] $(date +%F) Daily api_docs build" --body "Generated by $BUILDKITE_BUILD_URL" --label "release_note:skip" --label "backport:skip" --label "docs") echo "Opened PR: $prUrl" gh pr merge --repo elastic/kibana --auto --squash "$prUrl"