We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9926911 commit 58f82ceCopy full SHA for 58f82ce
.github/workflows/sync-issue.yml
@@ -24,8 +24,8 @@ jobs:
24
25
# 使用正则表达式匹配所需的参数
26
sync_type_match = re.search(r'### 同步类型\s*\n\s*(\w+)', issue_body)
27
- source_url_match = re.search(r'### 源地址\s*\n\s*([\w/:-]+)', issue_body)
28
- target_path_match = re.search(r'### 目标路径\s*\n\s*([\w/:-]+)', issue_body)
+ source_url_match = re.search(r'### 源地址\s*\n\s*([\w/\.:-]+)', issue_body)
+ target_path_match = re.search(r'### 目标路径\s*\n\s*([\w/\.:-]+)', issue_body)
29
30
# 提取参数
31
sync_type = sync_type_match.group(1) if sync_type_match else ""
0 commit comments