Files
milvus/.github/mergify.yml
T
dd6a411e5e doc: add design docs directory (#49829)
issue: #49831

## What changed

Vendor Milvus design documents into this repository under
`docs/design-docs` as regular tracked files.

- Keep only the design document content and assets under
`docs/design-docs/design_docs/` and `docs/design-docs/assets/`.
- Remove standalone repository metadata from the vendored directory,
such as `README.md`, `CONTRIBUTING.md`, `MEP-TEMPLATE.md`, `COMMITTERS`,
`MAINTAINERS`, `OWNERS`, `OWNERS_ALIASES`, and `.gitignore`.
- Document the Milvus design document process in the main
`CONTRIBUTING.md`.
- Update Mergify and `tools/mgit.py` so feature PRs must provide an
in-repo design document path under `docs/design-docs/design_docs/`.

## Why

Milvus feature work should have an associated design document. Keeping
design docs directly in this repository makes them available from a
normal Milvus checkout and lets feature implementations include or link
the related design document in the same repository.

## Verification

- `git diff --check`
- `python3 -m unittest tools/test_mgit_design_doc.py`
- `python3 -m py_compile tools/mgit.py tools/test_mgit_design_doc.py`
- Parsed `.github/mergify.yml` with Python `yaml.safe_load`
- Confirmed `docs/design-docs` only contains `assets/` and
`design_docs/` at the top level

---------

Signed-off-by: xiaofanluan <xiaofan.luan@zilliz.com>
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-15 18:56:24 +08:00

764 lines
24 KiB
YAML

# ==============================================================================
# Mergify Configuration for Milvus Project
# This file defines automated rules for pull request management
# ==============================================================================
# ==============================================================================
# GLOBAL CONFIGURATIONS AND ALIASES
# Define reusable conditions and patterns for better maintainability
# ==============================================================================
misc:
# File pattern matchers
- &source_code_files files~=^(?=.*((\.(rs|go|h|cpp)|go.sum|go.mod|CMakeLists.txt|conanfile\.*))).*$
- &no_source_code_files -files~=^(?=.*((\.(rs|go|h|cpp)|go.sum|go.mod|CMakeLists.txt|conanfile\.*))).*$
- &only_go_unittest_files -files~=^(?!(client|internal|pkg|tests)\/.*_test\.go).*$
- &morethan_go_unittest_files files~=^(?!(client|internal|pkg|tests)\/.*_test\.go).*$
# Build and test status conditions
- when_build_and_test_status_successs: &Build_AND_TEST_STATUS_SUCESS_ON_UBUNTU_20_OR_UBUNTU_22
- 'status-success=Build and test AMD64 Ubuntu 20.04'
- 'status-success=Build and test AMD64 Ubuntu 22.04'
- when_build_and_test_status_failed: &Build_AND_TEST_STATUS_FAILED_ON_UBUNTU_20_OR_UBUNTU_22
- &failed_on_ubuntu_20 'check-failure=Build and test AMD64 Ubuntu 20.04'
- &failed_on_ubuntu_22 'check-failure=Build and test AMD64 Ubuntu 22.04'
- when_go_sdk_status_success: &WHEN_GO_SDK_STATUS_SUCCESS
- 'status-success=go-sdk'
- 'status-success=milvus-sdk-go'
- 'status-success=ci-v2/go-sdk'
- when_cpp_unit_test_success: &WHEN_CPP_UNIT_TEST_SUCCESS
- 'status-success=cpp-unit-test'
- 'status-success=UT for Cpp'
- 'status-success=ci-v2/ut-cpp'
- when_go_unit_test_success: &WHEN_GO_UNIT_TEST_SUCCESS
- 'status-success=go-unit-test'
- 'status-success=UT for Go'
- 'status-success=ci-v2/ut-go'
- when_integration_unit_test_success: &WHEN_INTEGRATION_UNIT_TEST_SUCCESS
- 'status-success=integration-test'
- 'status-success=Integration Test'
- 'status-success=ci-v2/integration-test'
- when_e2e_test_success: &WHEN_E2E_TEST_SUCCESS
- 'status-success=cpu-e2e'
- 'status-success=ci-v2/e2e-default'
- when_build_success: &WHEN_BUILD_SUCCESS
- 'status-success=Build and test AMD64 Ubuntu 22.04'
- 'status-success=ci-v2/build'
- when_code_check_ubuntu_success: &WHEN_CODE_CHECK_UBUNTU_SUCCESS
- 'status-success=Code Checker AMD64 Ubuntu 22.04'
- 'status-success=ci-v2/code-check'
- when_code_check_macos_success: &WHEN_CODE_CHECK_MACOS_SUCCESS
- 'status-success=Code Checker MacOS 13'
- 'status-success=Code Checker MacOS'
# CI-v2 checker conditions (3.0 branch)
- when_build_ut_cov_success: &WHEN_BUILD_UT_COV_SUCCESS
- 'status-success=ci-v2/build-ut-cov'
- when_e2e_amd_success: &WHEN_E2E_AMD_SUCCESS
- 'status-success=ci-v2/e2e-amd'
# Branch configurations
- branch: &BRANCHES
- &MASTER_BRANCH base=master
- &2X_BRANCH base~=^2(\.\d+){1,2}$
- &3X_BRANCH base=3.0
# ==============================================================================
# PULL REQUEST RULES
# Organized by functionality for better maintenance and understanding
# ==============================================================================
pull_request_rules:
# ==========================================================================
# DCO (Developer Certificate of Origin) MANAGEMENT
# Handles DCO compliance for all contributions
# ==========================================================================
- name: Add needs-dco label when DCO check failed
conditions:
- or: *BRANCHES
- -status-success=DCO
actions:
label:
remove:
- dco-passed
add:
- needs-dco
comment:
message: |
@{{author}} Thanks for your contribution. Please submit with DCO, see the contributing guide https://github.com/milvus-io/milvus/blob/master/CONTRIBUTING.md#developer-certificate-of-origin-dco.
- name: Add dco-passed label when DCO check passed
conditions:
- or: *BRANCHES
- status-success=DCO
actions:
label:
remove:
- needs-dco
add:
- dco-passed
# ==========================================================================
# CONTINUOUS INTEGRATION (CI) STATUS MANAGEMENT
# Rules for managing CI test results and labeling PRs accordingly
# ==========================================================================
- name: Test passed for code changed on master
conditions:
- *MASTER_BRANCH
- or: *WHEN_BUILD_SUCCESS
- or: *WHEN_GO_SDK_STATUS_SUCCESS
- or: *WHEN_CPP_UNIT_TEST_SUCCESS
- or: *WHEN_GO_UNIT_TEST_SUCCESS
- or: *WHEN_INTEGRATION_UNIT_TEST_SUCCESS
- or: *WHEN_E2E_TEST_SUCCESS
- or: *WHEN_CODE_CHECK_UBUNTU_SUCCESS
- or: *WHEN_CODE_CHECK_MACOS_SUCCESS
# - 'status-success=codecov/patch'
# - 'status-success=codecov/project'
actions:
label:
add:
- ci-passed
- name: Test passed for code changed on 2.* branch
conditions:
- *2X_BRANCH
- or: *WHEN_BUILD_SUCCESS
# 2.* skip WHEN_GO_SDK_STATUS_SUCCESS
- or: *WHEN_CPP_UNIT_TEST_SUCCESS
- or: *WHEN_GO_UNIT_TEST_SUCCESS
- or: *WHEN_INTEGRATION_UNIT_TEST_SUCCESS
- or: *WHEN_E2E_TEST_SUCCESS
- or: *WHEN_CODE_CHECK_UBUNTU_SUCCESS
- or: *WHEN_CODE_CHECK_MACOS_SUCCESS
# - 'status-success=codecov/patch'
# - 'status-success=codecov/project'
actions:
label:
add:
- ci-passed
- name: Test passed for code changed on 3.0 branch
conditions:
- *3X_BRANCH
- or: *WHEN_BUILD_UT_COV_SUCCESS
- or: *WHEN_E2E_AMD_SUCCESS
- or: *WHEN_GO_SDK_STATUS_SUCCESS
- or: *WHEN_CODE_CHECK_MACOS_SUCCESS
actions:
label:
add:
- ci-passed
# Special cases for minimal testing requirements
- name: Test passed for tests changed
conditions:
- or:
- *MASTER_BRANCH
- *2X_BRANCH
- -files~=^(?!tests\/python_client).+
- or: *WHEN_E2E_TEST_SUCCESS
actions:
label:
add:
- ci-passed
- name: Test passed for tests changed on 3.0
conditions:
- *3X_BRANCH
- -files~=^(?!tests\/python_client).+
- or: *WHEN_E2E_AMD_SUCCESS
actions:
label:
add:
- ci-passed
- name: Test passed for docs changed only
conditions:
- or: *BRANCHES
- -files~=^(?!.*\.(md)).*$
actions:
label:
add:
- ci-passed
- name: Test passed for non rust go or c++ code changed
conditions:
- or:
- *MASTER_BRANCH
- *2X_BRANCH
- or: *WHEN_E2E_TEST_SUCCESS
- *no_source_code_files
actions:
label:
add:
- ci-passed
- name: Test passed for non source code changed on 3.0
conditions:
- *3X_BRANCH
- or: *WHEN_E2E_AMD_SUCCESS
- *no_source_code_files
actions:
label:
add:
- ci-passed
- name: Test passed for go unittest code changed-master
conditions:
- or:
- *MASTER_BRANCH
- *2X_BRANCH
- *only_go_unittest_files
- or: *WHEN_BUILD_SUCCESS
- or: *WHEN_CODE_CHECK_UBUNTU_SUCCESS
- or: *WHEN_CODE_CHECK_MACOS_SUCCESS
- or: *WHEN_GO_UNIT_TEST_SUCCESS
actions:
label:
add:
- ci-passed
- name: Test passed for go unittest code changed on 3.0
conditions:
- *3X_BRANCH
- *only_go_unittest_files
- or: *WHEN_BUILD_UT_COV_SUCCESS
- or: *WHEN_CODE_CHECK_MACOS_SUCCESS
actions:
label:
add:
- ci-passed
- name: Test passed for mergify changed
conditions:
- or: *BRANCHES
- -files~=^(?!\.github\/mergify\.yml).*$
actions:
label:
add:
- ci-passed
# Skip E2E testing rules
- name: Test passed for title skip e2e when no source code changed
conditions:
- or: *BRANCHES
- title~=\[skip e2e\]
- label=kind/enhancement
- *no_source_code_files
actions:
label:
add:
- ci-passed
- name: Test passed for skip e2e when source code changed
conditions:
- or:
- *MASTER_BRANCH
- *2X_BRANCH
- or: *WHEN_BUILD_SUCCESS
- title~=\[skip e2e\]
- or: *WHEN_CPP_UNIT_TEST_SUCCESS
- or: *WHEN_GO_UNIT_TEST_SUCCESS
- or: *WHEN_INTEGRATION_UNIT_TEST_SUCCESS
- or: *WHEN_CODE_CHECK_UBUNTU_SUCCESS
- or: *WHEN_CODE_CHECK_MACOS_SUCCESS
- *source_code_files
actions:
label:
add:
- ci-passed
- name: Test passed for skip e2e when source code changed on 3.0
conditions:
- *3X_BRANCH
- title~=\[skip e2e\]
- or: *WHEN_BUILD_UT_COV_SUCCESS
- or: *WHEN_CODE_CHECK_MACOS_SUCCESS
- *source_code_files
actions:
label:
add:
- ci-passed
# ==========================================================================
# CI FAILURE HANDLING
# Remove ci-passed labels when tests fail
# ==========================================================================
- name: Remove ci-passed when E2E test not success for tests changed
conditions:
- or:
- *MASTER_BRANCH
- *2X_BRANCH
- -files~=^(?!tests\/python_client).+
- label!=manual-pass
- label=ci-passed
- not:
or:
- status-success=cpu-e2e
- status-success=ci-v2/e2e-default
actions:
label:
remove:
- ci-passed
- name: Remove ci-passed when E2E test not success for tests changed on 3.0
conditions:
- *3X_BRANCH
- -files~=^(?!tests\/python_client).+
- label!=manual-pass
- label=ci-passed
- -status-success=ci-v2/e2e-amd
actions:
label:
remove:
- ci-passed
# ==========================================================================
# CONSOLIDATED MIGRATION FAILURE HANDLING
# Handle failure scenarios during CI system migration with optimized rules
# ==========================================================================
- name: Remove ci-passed when any CI system fails during migration
conditions:
- or:
- *MASTER_BRANCH
- *2X_BRANCH
- label!=manual-pass
- *source_code_files
# Comprehensive failure logic: remove ci-passed when any required system fails
- or:
# Build systems: remove if no success AND has failure
- and:
- not:
or:
- status-success = Build and test AMD64 Ubuntu 22.04
- status-success = ci-v2/build
- or:
- status-failure = Build and test AMD64 Ubuntu 22.04
- status-failure = ci-v2/build
# Go unit tests: remove if no success AND has failure
- and:
- not:
or:
- status-success = UT for Go
- status-success = ci-v2/ut-go
- or:
- status-failure = UT for Go
- status-failure = ci-v2/ut-go
# Integration tests: remove if no success AND has failure
- and:
- not:
or:
- status-success = Integration Test
- status-success = ci-v2/integration-test
- or:
- status-failure = Integration Test
- status-failure = ci-v2/integration-test
# Cpp unit tests: remove if no success AND has failure (only when cpp files changed)
- and:
- *morethan_go_unittest_files
- not:
or:
- status-success = cpp-unit-test
- status-success = ci-v2/ut-cpp
- or:
- status-failure = cpp-unit-test
- status-failure = ci-v2/ut-cpp
# Code checker Ubuntu: remove if no success AND has failure
- and:
- not:
or:
- status-success = Code Checker AMD64 Ubuntu 22.04
- status-success = ci-v2/code-check
- or:
- status-failure = Code Checker AMD64 Ubuntu 22.04
- status-failure = ci-v2/code-check
# Code checker MacOS: remove if no success AND has failure
- and:
- not:
or:
- status-success = Code Checker MacOS 13
- status-success = Code Checker MacOS
- or:
- status-failure = Code Checker MacOS 13
- status-failure = Code Checker MacOS
# E2E tests: regular case - remove if no success AND has failure
- and:
- not:
or:
- status-success = cpu-e2e
- status-success = ci-v2/e2e-default
- or:
- status-failure = cpu-e2e
- status-failure = ci-v2/e2e-default
# E2E tests: required case - remove if no success AND has failure (when not skipped)
- and:
- -title~=\[skip e2e\]
- files~=^(?!(.*_test\.go|.*\.md|\.github\/mergify\.yml)).*$
- not:
or:
- status-success = cpu-e2e
- status-success = ci-v2/e2e-default
- or:
- status-failure = cpu-e2e
- status-failure = ci-v2/e2e-default
actions:
label:
remove:
- ci-passed
- name: Remove ci-passed when any CI fails on 3.0 branch
conditions:
- *3X_BRANCH
- label!=manual-pass
- *source_code_files
- or:
- and:
- -status-success = ci-v2/build-ut-cov
- status-failure = ci-v2/build-ut-cov
- and:
- -status-success = ci-v2/e2e-amd
- status-failure = ci-v2/e2e-amd
- and:
- -status-success = ci-v2/go-sdk
- status-failure = ci-v2/go-sdk
- and:
- not:
or:
- status-success = Code Checker MacOS 13
- status-success = Code Checker MacOS
- or:
- status-failure = Code Checker MacOS 13
- status-failure = Code Checker MacOS
actions:
label:
remove:
- ci-passed
# ==========================================================================
# PR VALIDATION AND BLOCKING RULES
# Ensure PRs meet project standards before merging
# ==========================================================================
- name: Blocking PR if missing a related issue or doesn't have kind/enhancement label
conditions:
- or: *BRANCHES
- and:
- -body~=\#[0-9]{1,6}(\s+|$)
- -body~=https://github.com/milvus-io/milvus/issues/[0-9]{1,6}(\s+|$)
- or:
- and:
- label=kind/enhancement
- or:
- label=size/L
- label=size/XL
- label=size/XXL
- label=kind/bug
- label=kind/feature
- -label=kind/doc
- -label=kind/test
- -title~=\[automated\]
actions:
label:
add:
- do-not-merge/missing-related-issue
comment:
message: |
@{{author}} Please associate the related issue to the body of your Pull Request. (eg. "issue: #<xyz>")
- name: Dismiss block label if related issue be added into PR
conditions:
- and:
- or: *BRANCHES
- or:
- body~=\#[0-9]{1,6}(\s+|$)
- body~=https://github.com/milvus-io/milvus/issues/[0-9]{1,6}(\s+|$)
actions:
label:
remove:
- do-not-merge/missing-related-issue
- name: Blocking PR if missing a related master PR or doesn't have kind/branch-feature label
conditions:
- or:
- *2X_BRANCH
- *3X_BRANCH
- and:
- -body~=pr\:\ \#[0-9]{1,6}(\s+|$)
- -body~=https://github.com/milvus-io/milvus/pull/[0-9]{1,6}(\s+|$)
- -label=kind/branch-feature
- -title~=\[automated\]
actions:
label:
add:
- do-not-merge/missing-related-pr
comment:
message: |
@{{author}} Please associate the related pr of master to the body of your Pull Request. (eg. "pr: #<xyz>")
- name: Dismiss block label if related pr be added into PR
conditions:
- or:
- *2X_BRANCH
- *3X_BRANCH
- or:
- body~=pr\:\ \#[0-9]{1,6}(\s+|$)
- body~=https://github.com/milvus-io/milvus/pull/[0-9]{1,6}(\s+|$)
- label=kind/branch-feature
actions:
label:
remove:
- do-not-merge/missing-related-pr
- name: Dismiss block label if automated create PR
conditions:
- or: *BRANCHES
- title~=\[automated\]
actions:
label:
remove:
- do-not-merge/missing-related-issue
- do-not-merge/missing-related-pr
- do-not-merge/missing-design-doc
- name: Blocking PR if feat PR missing design doc
conditions:
- or: *BRANCHES
- or:
- 'title~=^feat:'
- label=kind/feature
- -title~=\[automated\]
# PR body does not reference an in-repo design doc, and the PR does not add one
- '-body~=(^|\s)docs/design-docs/design_docs/[^\s]+\.md'
- -files~=^docs/design-docs/design_docs/.*\.md$
actions:
label:
add:
- do-not-merge/missing-design-doc
comment:
message: |
@{{author}} This is a feature PR (`feat:`). Please provide a design document.
**How to resolve:**
Add a design document under `docs/design-docs/design_docs/` in this PR, or link an existing in-repo design document in the PR description:
```
design doc: docs/design-docs/design_docs/YYYYMMDD-your_design.md
```
- name: Dismiss block label if design doc is provided
conditions:
- or: *BRANCHES
- label=do-not-merge/missing-design-doc
- or:
- 'body~=(^|\s)docs/design-docs/design_docs/[^\s]+\.md'
- files~=^docs/design-docs/design_docs/.*\.md$
actions:
label:
remove:
- do-not-merge/missing-design-doc
# ==========================================================================
# PR FORMAT VALIDATION
# Enforce consistent PR title and description formats
# ==========================================================================
- name: Add 'do-not-merge/invalid-pr-format' label for invalid PR titles
conditions:
- or: *BRANCHES
- or:
- '-title~=^(feat:|enhance:|fix:|test:|doc:|auto:|build\(deps\):|\[automated\])'
- body=^$
actions:
label:
add:
- do-not-merge/invalid-pr-format
comment:
message: |
@{{author}}
**Invalid PR Title Format Detected**
Your PR submission does not adhere to our required standards. To ensure clarity and consistency, please meet the following criteria:
1. **Title Format:** The PR title must begin with one of these prefixes:
- `feat:` for introducing a new feature.
- `fix:` for bug fixes.
- `enhance:` for improvements to existing functionality.
- `test`: for add tests to existing functionality.
- `doc`: for modifying documentation.
- `auto`: for the pull request from bot.
- `build(deps)`: for dependency updates from Dependabot.
2. **Description Requirement:** The PR must include a non-empty description, detailing the changes and their impact.
**Required Title Structure:**
```
[Type]: [Description of the PR]
```
Where `Type` is one of `feat`, `fix`, `enhance`, `test` or `doc`.
**Example:**
```
enhance: improve search performance significantly
```
Please review and update your PR to comply with these guidelines.
- name: Remove 'do-not-merge/invalid-pr-format' label for valid PRs
conditions:
- or: *BRANCHES
- 'title~=^(feat:|enhance:|fix:|test:|doc:|auto:|build\(deps\):|\[automated\])'
- '-body=^$'
- 'label=do-not-merge/invalid-pr-format'
actions:
label:
remove:
- do-not-merge/invalid-pr-format
# ==========================================================================
# FAILURE NOTIFICATION AND RETRY HELPERS
# Provide helpful comments when CI jobs fail with retry instructions
# ==========================================================================
- name: Add comment when cpu-e2e job failed
conditions:
- or: *BRANCHES
- 'check-failure=cpu-e2e'
actions:
comment:
message: |
@{{author}} cpu-e2e job failed, comment `/run-cpu-e2e` can trigger the job again.
- name: Add comment when go-sdk check failed
conditions:
- or: *BRANCHES
- 'check-failure=go-sdk'
actions:
comment:
message: |
@{{author}} go-sdk check failed, comment `rerun go-sdk` can trigger the job again.
- name: Add comment when cpp-unit-test check failed
conditions:
- or: *BRANCHES
- 'check-failure=cpp-unit-test'
actions:
comment:
message: |
@{{author}} cpp-unit-test check failed, comment `rerun cpp-unit-test` can trigger the job again.
- name: Add comment when go-unit-test check failed
conditions:
- or: *BRANCHES
- 'check-failure=go-unit-test'
actions:
comment:
message: |
@{{author}} go-unit-test check failed, comment `rerun go-unit-test` can trigger the job again.
- name: Add comment when integration-test check failed
conditions:
- or: *BRANCHES
- 'check-failure=integration-test'
actions:
comment:
message: |
@{{author}} integration-test check failed, comment `rerun integration-test` can trigger the job again.
- name: Add comment when code checker or ut failed -master
conditions:
- or: *BRANCHES
- or:
# - 'check-failure=Code Checker AMD64 Ubuntu 20.04'
- 'check-failure=Build and test AMD64 Ubuntu 20.04'
actions:
comment:
message: |
@{{author}} ut workflow job failed, comment `rerun ut` can trigger the job again.
- name: Add comment when code checker or ut failed -2.2.*
conditions:
- *2X_BRANCH
- or:
# - 'check-failure=Code Checker AMD64 Ubuntu 20.04'
- 'check-failure=Build and test AMD64 Ubuntu 20.04'
actions:
comment:
message: |
@{{author}} ut workflow job failed, comment `rerun ut` can trigger the job again.
# ==========================================================================
# AUTOMATIC LABELING BASED ON PR TITLES
# Automatically categorize PRs based on their title prefixes
# ==========================================================================
- name: Label bug fix PRs
conditions:
- or: *BRANCHES
- 'title~=^fix:'
actions:
label:
add:
- kind/bug
- name: Label feature PRs
conditions:
- or: *BRANCHES
- 'title~=^feat:'
actions:
label:
add:
- kind/feature
- name: Label enhancement PRs
conditions:
- or: *BRANCHES
- 'title~=^enhance:'
actions:
label:
add:
- kind/enhancement
- name: Label test PRs
conditions:
- or: *BRANCHES
- 'title~=^test:'
actions:
label:
add:
- kind/test
- name: Label doc PRs
conditions:
- or: *BRANCHES
- 'title~=^doc:'
actions:
label:
add:
- kind/doc
# ==========================================================================
# SPECIAL AUTOMATION RULES
# Handle specific automated workflows and updates
# ==========================================================================
- name: Assign the 'lgtm' and 'approved' labels following the successful testing of the 'Update Knowhere Commit'
conditions:
- or: *BRANCHES
- 'title~=Update Knowhere Commit'
- label=ci-passed
actions:
label:
add:
- lgtm
- approved