forked from milvus-io/milvus
-
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/master' into storage_v2
- Loading branch information
Showing
1,253 changed files
with
74,652 additions
and
59,574 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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
IMAGE_REPO=milvusdb | ||
IMAGE_ARCH=amd64 | ||
OS_NAME=ubuntu20.04 | ||
DATE_VERSION=20230830-30ca458 | ||
LATEST_DATE_VERSION=20230830-30ca458 | ||
DATE_VERSION=20231011-11b5213 | ||
LATEST_DATE_VERSION=20231011-11b5213 | ||
GPU_DATE_VERSION=20230822-a64488a | ||
LATEST_GPU_DATE_VERSION=20230317-a1c7b0c | ||
MINIO_ADDRESS=minio:9000 | ||
PULSAR_ADDRESS=pulsar://pulsar:6650 | ||
ETCD_ENDPOINTS=etcd:2379 | ||
AZURITE_CONNECTION_STRING="DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://azurite:10000/devstoreaccount1;" |
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,48 @@ | ||
name: Add Comment for issue | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
|
||
jobs: | ||
check_issue_title: | ||
name: Check issue | ||
runs-on: ubuntu-latest | ||
env: | ||
TITLE_PASSED: "T" | ||
permissions: | ||
issues: write | ||
timeout-minutes: 20 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Check Issue | ||
shell: bash | ||
run: | | ||
echo Issue title: ${{ github.event.issue.title }} | ||
cat >> check_title.py << EOF | ||
import re | ||
import sys | ||
check_str = sys.argv[1] | ||
pattern = re.compile(r'[\u4e00-\u9fa5]') | ||
match = pattern.search(check_str) | ||
if match: | ||
print("TITLE_PASSED=F") | ||
else: | ||
print("TITLE_PASSED=T") | ||
EOF | ||
python3 check_title.py "${{ github.event.issue.title }}" >> "$GITHUB_ENV" | ||
cat $GITHUB_ENV | ||
- name: Check env | ||
shell: bash | ||
run: | | ||
echo ${{ env.TITLE_PASSED }} | ||
- name: Add comment | ||
if: ${{ env.TITLE_PASSED == 'F'}} | ||
uses: peter-evans/create-or-update-comment@5f728c3dae25f329afbe34ee4d08eef25569d79f | ||
with: | ||
issue-number: ${{ github.event.issue.number }} | ||
body: | | ||
The title and description of this issue contains Chinese. Please use English to describe your issue. |
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.