-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/129308-xy-only
- Loading branch information
Showing
1,011 changed files
with
23,457 additions
and
14,099 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
env: | ||
PUBLISH_API_DOCS_CHANGES: 'true' | ||
steps: | ||
- command: .buildkite/scripts/steps/build_api_docs.sh | ||
label: 'Build API Docs' | ||
agents: | ||
queue: n2-4-spot | ||
key: build_api_docs | ||
timeout_in_minutes: 60 | ||
retry: | ||
automatic: | ||
- exit_status: '-1' | ||
limit: 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,22 @@ node scripts/build_ts_refs \ | |
|
||
echo "--- Build API Docs" | ||
node --max-old-space-size=12000 scripts/build_api_docs | ||
|
||
if [[ "${PUBLISH_API_DOCS_CHANGES:-}" == "true" ]]; then | ||
echo "--- Publish API Docs" | ||
|
||
git config --global user.name kibanamachine | ||
git config --global user.email '[email protected]' | ||
|
||
branch="api_docs_$(date +%F_%H-%M-%S)" | ||
git checkout -b "$branch" | ||
git add ./*.docnav.json | ||
git add api_docs | ||
git commit -m "[api-docs] Daily api_docs build" | ||
|
||
git remote add kibanamachine https://github.com/kibanamachine/kibana.git | ||
git push -u kibanamachine "$branch" | ||
prUrl=$(gh pr create --repo elastic/kibana --title "[api-docs] $(date +%F) Daily api_docs build" --body "Generated by $BUILDKITE_BUILD_URL" --label "release_note:skip" --label "backport:auto-version") | ||
echo "Opened PR: $prUrl" | ||
gh pr merge --repo elastic/kibana --auto --squash "$prUrl" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.