Lines Matching refs:commits

95     description = "Generates a Markdown report for commits on main since the 'latest' tag.",
125 help = "JQL query load tickets; this should match tickets expected to correspond to the commits being checked. Example: 'project=ICU and fixVersion=63.1'; set fixVersion to the upcoming version.",
297 print("TIP: Have you pulled the latest main? This script only looks at local commits.", file=sys.stderr)
307 commits = list(get_commits(**vars(args)))
310 # commit_issue_ids is all commits in the git query. Excluding cherry exclusions.
311 commit_issue_ids = set(commit.issue_id for commit in commits if commit.issue_id is not None and commit.commit.hexsha not in excludeAlreadyMergedToOldMaint)
312 # which issues have commits that were excluded
313 excluded_commit_issue_ids = set(commit.issue_id for commit in commits if commit.issue_id is not None and commit.commit.hexsha in excludeAlreadyMergedToOldMaint)
315 # grouped_commits is all commits and issue_ids in the git query, regardless of issue status
318 (issue_id, [commit for commit in commits if commit.issue_id == issue_id and commit.commit.hexsha not in excludeAlreadyMergedToOldMaint])
352 print("- Latest Commit: %s/commit/%s" % (args.github_url, commits[0].commit.hexsha))
379 print("\t - **Note: Has cherry-picked commits. Fix Version may be wrong.**")
388 print("Tickets with resolution 'Fixed by Other Ticket' are not allowed to have commits.")
406 print("\t- No commits, and they are REQUIRED.")
408 print("\t- Has commits, and they are FORBIDDEN.")
418 print("Tip: If you see your name here, make sure to label your commits correctly in the future.")
421 for commit in commits:
437 for issue_id, commits in grouped_commits:
453 for commit in commits:
477 for issue_id, commits in grouped_commits:
504 for issue_id, commits in grouped_commits:
526 for commit in commits: