Skip to content

Commit

Permalink
chore: Update gitlab host in config_util.py
Browse files Browse the repository at this point in the history
  • Loading branch information
yangbobo2021 committed May 20, 2024
1 parent ec187a0 commit a7566e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion merico/pr/config_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def get_repo_type(url):
# 根据URL的特征判断仓库管理类型
if "github.com" in url:
return "github"
elif "gitlab.com" in url or "/gitlab/" in url:
elif "gitlab.com" in url or "gitlab" in url:
return "gitlab"
elif "bitbucket.org" in url:
return "bitbucket"
Expand Down

0 comments on commit a7566e5

Please sign in to comment.