From e6cf6e0c686cd68b9f126f729ceff7ec3ffb233e Mon Sep 17 00:00:00 2001 From: snowykami Date: Wed, 18 Sep 2024 01:25:43 +0800 Subject: [PATCH] =?UTF-8?q?:package:=20docs:=20=E4=BF=AE=E6=94=B9=E5=8F=91?= =?UTF-8?q?=E5=B8=83=E6=8C=89=E9=92=AE=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- liteyuki_flow/resource_handler.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/liteyuki_flow/resource_handler.py b/liteyuki_flow/resource_handler.py index 61ca7932..27656b61 100644 --- a/liteyuki_flow/resource_handler.py +++ b/liteyuki_flow/resource_handler.py @@ -129,8 +129,7 @@ def add_resource(github: Github, issue: Issue, repo: Repository) -> err: # if not any([True for u in repo.get_collaborators() if u.login == closed_by.login]): # push_publish_result(issue, "❌ 你不是仓库管理员,无法发布资源包。") # return ValueError("你不是仓库管理员,无法发布资源包。") - print(issue.labels, ) - if "pre-checked" not in issue.labels: + if "pre-checked" not in [l.name for l in issue.labels]: issue.edit(state="open") push_publish_result(issue, "❌ 请先通过预检查。") return ValueError("请先进行预检查。") @@ -182,7 +181,7 @@ def add_resource(github: Github, issue: Issue, repo: Repository) -> err: parents=[repo.get_git_commit(ref.object.sha)] ) ref.edit(commit.sha) - if "pre-checked" in issue.labels: + if "pre-checked" in [l.name for l in issue.labels]: issue.remove_from_labels("pre-checked") push_publish_result(issue, f"✅ 资源包 {name} 已发布!商店页面稍后就会更新。") return nil