From 9ba0b9af937ef8184ebe1fbe3845b13038bdc06b Mon Sep 17 00:00:00 2001 From: zhouxiaxiang Date: Fri, 18 Mar 2022 16:50:07 +0800 Subject: [PATCH] modify check obs meta for loongarch --- core/check_meta_service.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/check_meta_service.py b/core/check_meta_service.py index f2701f0..3ae39b7 100644 --- a/core/check_meta_service.py +++ b/core/check_meta_service.py @@ -366,6 +366,9 @@ class CheckMetaPull(object): """ check the pkg whether the branch is protected """ + # LoongArch branch does not check protected + if "loongarch" in change_path.lower(): + return path_list = change_path.split('/') if "multi" in path_list[0] or "Multi" in path_list[0]: branch = path_list[1] -- Gitee