Skip to content

Commit 63e2cbf

Browse files
committed
Fix validate PR action (I hope)
1 parent 9de5641 commit 63e2cbf

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/check-contribution.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- 'git-in-here.yml'
77
types:
88
- opened
9+
- synchronize
910

1011
permissions:
1112
pull-requests: write

lib/validate_pr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def make_final_comment(user: str, errors: []) -> str:
163163
result += f"Thanks for contributing to {REPO_NAME}! 🎉\n"
164164
if errors:
165165
errors.reverse()
166-
result += "\n\nIn the meantime, I've spotted a few possible issues for you to address:\n"
166+
result += "\n\nI've spotted a few possible issues for you to address:\n"
167167
result += '\n'.join(errors)
168168
result += (
169169
"\n\nPlease ensure you've read and followed the "

0 commit comments

Comments
 (0)