Skip to content

Commit

Permalink
ICU-21755 commit-checker: update Tip
Browse files Browse the repository at this point in the history
- improve recommendation on no-commit-found case for ICU and CLDR
- for CLDR-15423
  • Loading branch information
srl295 committed Mar 23, 2023
1 parent cb65f75 commit 4b5a6ed
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/commit-checker/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,9 @@ def run_section(section, out) -> int:
global commits
count = 0
if section == CLOSED_NO_COMMIT:
print("Tip: Tickets with type 'Task' or 'User Guide' or resolution 'Fixed by Other Ticket' are ignored.", file=out)
print("ICU Tip: If commits aren't expected, change the ticket type to 'Task' or 'User Guide' or set the resolution to one such as 'Fixed by other ticket' or 'Fix Non-repo'.", file=out)
print("CLDR Tip: Change the ticket type or set the resolution to one such as 'Fixed by other ticket' or 'Fix Non-repo' if commits aren't expected.", file=out)

print(file=out)
found = False
for issue in issues:
Expand Down

0 comments on commit 4b5a6ed

Please sign in to comment.