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 8cfaf2e commit 27ae28fCopy full SHA for 27ae28f
scripts/api_diff_report/pr_commenter.py
@@ -28,7 +28,7 @@
28
STAGES_PROGRESS = "progress"
29
STAGES_END = "end"
30
31
-TITLE_PROGESS = "## ⏳ Detecting API diff in progress...\n"
+TITLE_PROGRESS = "## ⏳ Detecting API diff in progress...\n"
32
TITLE_END_DIFF = '## Apple API Diff Report\n'
33
TITLE_END_NO_DIFF = "## ✅ No API diff detected\n"
34
@@ -54,7 +54,7 @@ def main():
54
if stage == STAGES_PROGRESS:
55
if comment_id:
56
report = COMMENT_HIDDEN_IDENTIFIER
57
- report += generate_markdown_title(TITLE_PROGESS, commit, run_id)
+ report += generate_markdown_title(TITLE_PROGRESS, commit, run_id)
58
update_comment(token, comment_id, report)
59
delete_label(token, pr_number, PR_LABEL)
60
elif stage == STAGES_END:
0 commit comments