diff --git a/.buildkite/pull-requests.org-wide.json b/.buildkite/pull-requests.org-wide.json index 7443a2ea16e5..3ae4ad86a216 100644 --- a/.buildkite/pull-requests.org-wide.json +++ b/.buildkite/pull-requests.org-wide.json @@ -71,6 +71,7 @@ "elastic/logstash", "elastic/logstash-docs", "elastic/observability-docs", + "elastic/observability-robots-playground", "elastic/security-docs", "elastic/stack-docs", "elastic/tech-content", diff --git a/.buildkite/scripts/build_pr.sh b/.buildkite/scripts/build_pr.sh index 55340a499e7f..2664e32fd91f 100755 --- a/.buildkite/scripts/build_pr.sh +++ b/.buildkite/scripts/build_pr.sh @@ -142,6 +142,12 @@ if [[ "${GITHUB_PR_BASE_REPO}" != 'docs' ]]; then docs_diff=$(git diff --stat "origin/$GITHUB_PR_TARGET_BRANCH"...HEAD -- ./docs/en) ;; + "observability-robots-playground") + git fetch origin "$GITHUB_PR_TARGET_BRANCH" + echo "This project is only for testing purposes" + exit 0 + ;; + "packagespec") git fetch origin "$GITHUB_PR_TARGET_BRANCH" docs_diff=$(git diff --stat "origin/$GITHUB_PR_TARGET_BRANCH"...HEAD -- ./versions ./spec)