Skip to content

Commit

Permalink
fix: joj3 update issue title
Browse files Browse the repository at this point in the history
  • Loading branch information
BoYanZh committed Oct 28, 2024
1 parent 41d8167 commit a211db2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions joint_teapot/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -511,15 +511,15 @@ def joj3_all(
joj3_issue = tea.pot.gitea.issue_api.issue_create_issue(
tea.pot.gitea.org_name,
submitter_repo_name,
body={"title": title, "body": ""},
body={"title": title_prefix, "body": ""},
)
gitea_issue_url = issue.html_url
logger.info(f"gitea issue url: {gitea_issue_url}")
tea.pot.gitea.issue_api.issue_edit_issue(
tea.pot.gitea.org_name,
submitter_repo_name,
joj3_issue.number,
body={"body": comment},
body={"title": title, "body": comment},
)
if skip_scoreboard and skip_failed_table:
return
Expand Down

0 comments on commit a211db2

Please sign in to comment.