make the mirror message appear on github issue creation, too
This commit is contained in:
parent
879cf0a8d6
commit
5544c8c83d
|
@ -261,13 +261,28 @@ def github_handle_issue_action():
|
||||||
issue_footer
|
issue_footer
|
||||||
])
|
])
|
||||||
|
|
||||||
gitea.create_issue(
|
new_issue = gitea.create_issue(
|
||||||
repo_owner,
|
repo_owner,
|
||||||
repo_name,
|
repo_name,
|
||||||
event_title,
|
event_title,
|
||||||
issue_body
|
issue_body
|
||||||
)
|
)
|
||||||
|
|
||||||
|
returned_data = new_issue.json()
|
||||||
|
issue_comment_body = create_signature(
|
||||||
|
"mirrored",
|
||||||
|
returned_data["html_url"],
|
||||||
|
app.config["GITEA_INSTANCE_DOMAIN"],
|
||||||
|
returned_data["url"],
|
||||||
|
)
|
||||||
|
|
||||||
|
github.leave_comment_on_issue_by_number(
|
||||||
|
repo_owner,
|
||||||
|
repo_name,
|
||||||
|
issue_number,
|
||||||
|
issue_comment_body,
|
||||||
|
)
|
||||||
|
|
||||||
elif event_type == "created" and not issue_sentinel_present:
|
elif event_type == "created" and not issue_sentinel_present:
|
||||||
comment_user = data["comment"]["user"]["login"]
|
comment_user = data["comment"]["user"]["login"]
|
||||||
comment_user_url = "https://github.com/{}".format(
|
comment_user_url = "https://github.com/{}".format(
|
||||||
|
|
Loading…
Reference in New Issue