Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .buildkite/pull_requests.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
"enabled": true,
"allow_org_users": true,
"allowed_repo_permissions": ["admin", "write"],
"allowed_list": ["elastic-vault-github-plugin-prod[bot]"],
"allowed_list": ["elastic-vault-github-plugin-prod[bot]", "elastic-renovate-prod[bot]"],
"build_on_commit": true,
"build_on_comment": true,
"build_drafts": false,
Expand Down
7 changes: 7 additions & 0 deletions .buildkite/scripts/steps/renovate/renovate_helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,11 @@ echo --- Additional helpers
if [ "$GITHUB_PR_BRANCH" = "renovate/main-chainguard" ] && ! is_pr_with_label "ci:cloud-deploy"; then
echo "Adding deploy label to main chainguard PR"
gh api "repos/elastic/kibana/issues/${GITHUB_PR_NUMBER}/labels" --method POST -f "labels[]=ci:cloud-deploy" >/dev/null

# Sync GITHUB_PR_LABELS variable since we're passing it along to the PR pipeline
if [ -n "${GITHUB_PR_LABELS:-}" ]; then
export GITHUB_PR_LABELS="${GITHUB_PR_LABELS},ci:cloud-deploy"
else
export GITHUB_PR_LABELS="ci:cloud-deploy"
fi
fi