From deea1bf9a1055ca194a1f74c035de4f67161b0d4 Mon Sep 17 00:00:00 2001 From: zhuwenxing Date: Mon, 8 Sep 2025 11:43:55 +0800 Subject: [PATCH] enhance: add build(deps) as a valid pr format (#44245) /kind improvement for the pr created by [dependabot](https://github.com/apps/dependabot) Signed-off-by: zhuwenxing --- .github/mergify.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/mergify.yml b/.github/mergify.yml index d200ee7828..3a3b6c52ce 100644 --- a/.github/mergify.yml +++ b/.github/mergify.yml @@ -381,7 +381,7 @@ pull_request_rules: conditions: - or: *BRANCHES - or: - - '-title~=^(feat:|enhance:|fix:|test:|doc:|auto:|\[automated\])' + - '-title~=^(feat:|enhance:|fix:|test:|doc:|auto:|build\(deps\):|\[automated\])' - body=^$ actions: label: @@ -402,6 +402,7 @@ pull_request_rules: - `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. @@ -423,7 +424,7 @@ pull_request_rules: - name: Remove 'do-not-merge/invalid-pr-format' label for valid PRs conditions: - or: *BRANCHES - - 'title~=^(feat:|enhance:|fix:|test:|doc:|auto:|\[automated\])' + - 'title~=^(feat:|enhance:|fix:|test:|doc:|auto:|build\(deps\):|\[automated\])' - '-body=^$' - 'label=do-not-merge/invalid-pr-format' actions: