forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
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 chunking_settings
- Loading branch information
Showing
1,544 changed files
with
53,618 additions
and
14,509 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
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 |
---|---|---|
|
@@ -2,17 +2,17 @@ | |
|
||
set -euo pipefail | ||
|
||
if [[ "$BUILDKITE_BRANCH" != "lucene_snapshot" ]]; then | ||
echo "Error: This script should only be run on the lucene_snapshot branch" | ||
if [[ "$BUILDKITE_BRANCH" != "lucene_snapshot"* ]]; then | ||
echo "Error: This script should only be run on lucene_snapshot branches" | ||
exit 1 | ||
fi | ||
|
||
echo --- Updating lucene_snapshot branch with main | ||
echo --- Updating "$BUILDKITE_BRANCH" branch with main | ||
|
||
git config --global user.name elasticsearchmachine | ||
git config --global user.email '[email protected]' | ||
|
||
git checkout lucene_snapshot | ||
git checkout "$BUILDKITE_BRANCH" | ||
git fetch origin main | ||
git merge --no-edit origin/main | ||
git push origin lucene_snapshot | ||
git push origin "$BUILDKITE_BRANCH" |
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 |
---|---|---|
|
@@ -32,5 +32,5 @@ BWC_VERSION: | |
- "8.12.2" | ||
- "8.13.4" | ||
- "8.14.3" | ||
- "8.15.1" | ||
- "8.15.2" | ||
- "8.16.0" |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
BWC_VERSION: | ||
- "7.17.24" | ||
- "8.15.1" | ||
- "8.15.2" | ||
- "8.16.0" |
Validating CODEOWNERS rules …
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Daily update of JDK update branch with changes from main | ||
name: "Merge main to openjdk23-bundle branch" | ||
on: | ||
schedule: | ||
- cron: '30 17 * * *' | ||
workflow_dispatch: {} | ||
|
||
jobs: | ||
merge-branch: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@master | ||
|
||
- name: merge | ||
uses: devmasx/[email protected] | ||
with: | ||
type: 'now' | ||
target_branch: openjdk23-bundle | ||
github_token: ${{ secrets.ELASTICSEARCHMACHINE_TOKEN }} |
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.