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 remote-tracking branch 'upstream/main' into recovery_source_ena…
…bled_setting
- Loading branch information
Showing
1,759 changed files
with
61,534 additions
and
13,533 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 |
---|---|---|
|
@@ -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
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.