Skip to content

Commit 27ae28f

Browse files
authored
Build: enhance api diff report scripts (#13840)
1 parent 8cfaf2e commit 27ae28f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/api_diff_report/pr_commenter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
STAGES_PROGRESS = "progress"
2929
STAGES_END = "end"
3030

31-
TITLE_PROGESS = "## ⏳  Detecting API diff in progress...\n"
31+
TITLE_PROGRESS = "## ⏳  Detecting API diff in progress...\n"
3232
TITLE_END_DIFF = '## Apple API Diff Report\n'
3333
TITLE_END_NO_DIFF = "## ✅  No API diff detected\n"
3434

@@ -54,7 +54,7 @@ def main():
5454
if stage == STAGES_PROGRESS:
5555
if comment_id:
5656
report = COMMENT_HIDDEN_IDENTIFIER
57-
report += generate_markdown_title(TITLE_PROGESS, commit, run_id)
57+
report += generate_markdown_title(TITLE_PROGRESS, commit, run_id)
5858
update_comment(token, comment_id, report)
5959
delete_label(token, pr_number, PR_LABEL)
6060
elif stage == STAGES_END:

0 commit comments

Comments
 (0)