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' of github.com:apache/doris into HEAD
- Loading branch information
Showing
1,303 changed files
with
41,429 additions
and
19,607 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 |
---|---|---|
|
@@ -158,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 |
---|---|---|
@@ -1,6 +1,63 @@ | ||
## Proposed changes | ||
### What problem does this PR solve? | ||
<!-- | ||
You need to clearly describe your PR in this part: | ||
1. What problem was fixed (it's best to include specific error reporting information). How it was fixed. | ||
2. Which behaviors were modified. What was the previous behavior, what is it now, why was it modified, and what possible impacts might there be. | ||
3. What features were added. Why this function was added. | ||
4. Which codes were refactored and why this part of the code was refactored. | ||
5. Which functions were optimized and what is the difference before and after the optimization. | ||
The description of the PR needs to enable reviewers to quickly and clearly understand the logic of the code modification. | ||
--> | ||
|
||
<!-- | ||
If there are related issues, please fill in the issue number. | ||
- If you want the issue to be closed after the PR is merged, please use "close #12345". Otherwise, use "ref #12345" | ||
--> | ||
Issue Number: close #xxx | ||
|
||
<!--Describe your changes.--> | ||
<!-- | ||
If this PR is followup a preivous PR, for example, fix the bug that introduced by a related PR, | ||
link the PR here | ||
--> | ||
Related PR: #xxx | ||
|
||
Problem Summary: | ||
|
||
### Check List (For Committer) | ||
|
||
- Test <!-- At least one of them must be included. --> | ||
|
||
- [ ] Regression test | ||
- [ ] Unit Test | ||
- [ ] Manual test (add detailed scripts or steps below) | ||
- [ ] No need to test or manual test. Explain why: | ||
- [ ] This is a refactor/code format and no logic has been changed. | ||
- [ ] Previous test can cover this change. | ||
- [ ] No colde files have been changed. | ||
- [ ] Other reason <!-- Add your reason? --> | ||
|
||
- Behavior changed: | ||
|
||
- [ ] No. | ||
- [ ] Yes. <!-- Explain the behavior change --> | ||
|
||
- Does this need documentation? | ||
|
||
- [ ] No. | ||
- [ ] Yes. <!-- Add document PR link here. eg: https://github.com/apache/doris-website/pull/1214 --> | ||
|
||
- Release note | ||
|
||
<!-- bugfix, feat, behavior changed need a release note --> | ||
<!-- Add one line release note for this PR. --> | ||
None | ||
|
||
### Check List (For Reviewer who merge this PR) | ||
|
||
- [ ] Confirm the release note | ||
- [ ] Confirm test cases | ||
- [ ] Confirm document | ||
- [ ] Add branch pick label <!-- Add branch pick label that this PR should merge into --> | ||
|
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
Oops, something went wrong.