From caf9608b563a1a70431bc6357388775a505da754 Mon Sep 17 00:00:00 2001 From: Ed Savage Date: Fri, 24 Jul 2026 13:35:42 +1200 Subject: [PATCH] [ML] Allow github-actions[bot] to trigger ml-cpp-pr-builds CI Backport PRs opened by the auto-backport workflow are authored by github-actions[bot], which is not an org member, so buildkite-pr-bot's org-membership path never matches it and no build is triggered. Add the bot to allowed_list so its PRs (backports) get the full CI matrix, matching elastic/elasticsearch (see elasticsearch#147815). Fixes #3099 Co-authored-by: Cursor --- .buildkite/pull-requests.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.buildkite/pull-requests.json b/.buildkite/pull-requests.json index ec1fcba9c..db3e56c5e 100644 --- a/.buildkite/pull-requests.json +++ b/.buildkite/pull-requests.json @@ -5,6 +5,7 @@ "pipeline_slug": "ml-cpp-pr-builds", "allow_org_users": true, "allowed_repo_permissions": ["admin", "write"], + "allowed_list": ["github-actions[bot]"], "set_commit_status": false, "commit_status_context": "ml-cpp-ci", "build_on_commit": true,