forked from apache/doris
-
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 'master' into add-cases-for-ip
- Loading branch information
Showing
1,554 changed files
with
53,336 additions
and
20,423 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 |
---|---|---|
|
@@ -70,16 +70,29 @@ github: | |
dismiss_stale_reviews: true | ||
require_code_owner_reviews: true | ||
required_approving_review_count: 1 | ||
branch-1.1-lts: | ||
|
||
branch-3.0: | ||
required_status_checks: | ||
# if strict is true, means "Require branches to be up to date before merging". | ||
strict: false | ||
contexts: | ||
- License Check | ||
|
||
required_pull_request_reviews: | ||
dismiss_stale_reviews: true | ||
required_approving_review_count: 1 | ||
- Clang Formatter | ||
- CheckStyle | ||
- Build Broker | ||
- ShellCheck | ||
- Build Third Party Libraries (Linux) | ||
- Build Third Party Libraries (macOS) | ||
- FE UT (Doris FE UT) | ||
- BE UT (Doris BE UT) | ||
- Cloud UT (Doris Cloud UT) | ||
- COMPILE (DORIS_COMPILE) | ||
- P0 Regression (Doris Regression) | ||
- External Regression (Doris External Regression) | ||
- cloud_p0 (Doris Cloud Regression) | ||
#required_pull_request_reviews: | ||
# dismiss_stale_reviews: true | ||
# required_approving_review_count: 1 | ||
|
||
branch-2.1: | ||
required_status_checks: | ||
|
@@ -124,6 +137,17 @@ github: | |
dismiss_stale_reviews: true | ||
required_approving_review_count: 1 | ||
|
||
branch-1.1-lts: | ||
required_status_checks: | ||
# if strict is true, means "Require branches to be up to date before merging". | ||
strict: false | ||
contexts: | ||
- License Check | ||
|
||
required_pull_request_reviews: | ||
dismiss_stale_reviews: true | ||
required_approving_review_count: 1 | ||
|
||
collaborators: | ||
- LemonLiTree | ||
- Yukang-Lian | ||
|
@@ -134,7 +158,7 @@ github: | |
- wm1581066 | ||
- KassieZ | ||
- yujun777 | ||
- gavinchou | ||
- doris-robot | ||
|
||
notifications: | ||
pullrequests_status: [email protected] | ||
|
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,62 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
# | ||
name: Auto Cherry-Pick to Branch | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- closed | ||
branches: | ||
- master | ||
permissions: | ||
checks: write | ||
contents: write | ||
pull-requests: write | ||
jobs: | ||
auto_cherry_pick: | ||
runs-on: ubuntu-latest | ||
if: ${{ contains(github.event.pull_request.labels.*.name, 'dev/3.0.x') && github.event.pull_request.merged == true }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: Install dependencies | ||
run: | | ||
pip install PyGithub | ||
- name: Check SHA | ||
run: | | ||
expected_sha="80b7c6087f2a3e4f4c7f035a52e8e7b05ce00f27aa5c1bd52179df685c912447f94a96145fd3204a3958d8ed9777de5a5183b120e99e0e95bbca0366d69b0ac0" | ||
calculated_sha=$(sha512sum tools/auto-pick-script.py | awk '{ print $1 }') | ||
if [ "$calculated_sha" != "$expected_sha" ]; then | ||
echo "SHA mismatch! Expected: $expected_sha, but got: $calculated_sha" | ||
exit 1 | ||
else | ||
echo "SHA matches: $calculated_sha" | ||
fi | ||
- name: Auto cherry-pick | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
REPO_NAME: ${{ github.repository }} | ||
CONFLICT_LABEL: cherry-pick-conflict-in-3.0 | ||
run: | | ||
python tools/auto-pick-script.py ${{ github.event.pull_request.number }} branch-3.0 |
This file was deleted.
Oops, something went wrong.
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
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.