Home
last modified time | relevance | path

Searched refs:commit_msg (Results 1 – 20 of 20) sorted by relevance

/aosp_15_r20/external/angle/scripts/
H A Dangle_presubmit_utils_unittest.py36 def run_check_commit_message_formatting(self, commit_msg): argument
37 input_api = InputAPI_mock(commit_msg)
41 commit_msg = """a
48 errors = self.run_check_commit_message_formatting(commit_msg)
52 commit_msg = """Change-Id: I966c79d96175da9eee92ef6da20db50d488137b2"""
53 errors = self.run_check_commit_message_formatting(commit_msg)
62 commit_msg = """
68 errors = self.run_check_commit_message_formatting(commit_msg)
72 commit_msg = """a
76 errors = self.run_check_commit_message_formatting(commit_msg)
[all …]
H A Droll_chromium_deps.py461 commit_msg = []
464 commit_msg.extend([
472 commit_msg.append('%s %s' % (adjective, noun))
480 commit_msg.append('* %s: %s..%s' % (c.path, c.current_version, c.new_version))
482 commit_msg.append('* %s: %s/+log/%s..%s' %
490 commit_msg.append('DEPS diff: %s\n' % change_url)
492 commit_msg.append('No dependencies changed.')
496 commit_msg.append('Clang version changed %s:%s' %
502 commit_msg.append('Details: %s\n' % change_url)
504 commit_msg.append('No update to Clang.\n')
[all …]
/aosp_15_r20/external/webrtc/tools_webrtc/autoroller/
H A Droll_deps.py474 commit_msg = [
482 commit_msg.append('%s %s' % (adjective, noun))
489 commit_msg.append('* %s: %s..%s' %
492 commit_msg.append('* %s: %s/+log/%s..%s' %
497 commit_msg.extend('* %s' % p for p in added_deps_paths)
501 commit_msg.extend('* %s' % p for p in removed_deps_paths)
505 commit_msg.append('DEPS diff: %s\n' % change_url)
507 commit_msg.append('No dependencies changed.')
510 commit_msg.append('Clang version changed %s:%s' %
514 commit_msg.append('Details: %s\n' % change_url)
[all …]
/aosp_15_r20/external/libyuv/tools_libyuv/autoroller/
H A Droll_deps.py511 commit_msg = [
519 commit_msg.append('%s %s' % (adjective, noun))
526 commit_msg.append('* %s: %s..%s' %
529 commit_msg.append('* %s_vesion: %s..%s' %
532 commit_msg.append('* %s: %s/+log/%s..%s' %
537 commit_msg.extend('* %s' % p for p in added_deps_paths)
541 commit_msg.extend('* %s' % p for p in removed_deps_paths)
545 commit_msg.append('DEPS diff: %s\n' % change_url)
547 commit_msg.append('No dependencies changed.')
550 commit_msg.append('Clang version changed %s:%s' %
[all …]
/aosp_15_r20/packages/modules/Wifi/
Dwifi_upload_hook.py36 def is_commit_msg_valid(commit_msg, checkResource, checkXmlTag): argument
38 for line in commit_msg.splitlines():
87 def is_commit_msg_has_translation_bug_id(commit_msg): argument
88 for line in commit_msg.splitlines():
112 commit_msg = args.commit_msg
121 if not is_commit_msg_has_translation_bug_id(commit_msg):
130 if not is_commit_msg_valid(commit_msg, True, False):
146 if not is_commit_msg_valid(commit_msg, False, True):
/aosp_15_r20/external/webrtc/tools_webrtc/version_updater/
H A Dupdate_version.py110 commit_msg = ('Update WebRTC code version (%02d-%02d-%02dT%02d:%02d:%02d).'
112 commit_msg = commit_msg % (d.year, d.month, d.day, d.hour, d.minute, d.second)
114 subprocess.check_call(['git', 'commit', '-m', commit_msg])
/aosp_15_r20/external/openthread/tools/gerrit/
H A Dgit-squash-merge.sh107 commit_msg="${commit_msg_header}${NEWLINE}${NEWLINE}${commit_list}"
109 commit_msg="${commit_msg_header}${NEWLINE}${NEWLINE}$2${NEWLINE}${NEWLINE}${commit_list}"
122 …git commit -m "$commit_msg" 1>/dev/null 2>/dev/null || die "git commit failed${NEWLINE}${NEWLINE}$…
/aosp_15_r20/packages/services/Telecomm/scripts/
Daosp_tag_preupload.py41 commit_msg = subprocess.check_output(["git", "show",
43 for commit_line in commit_msg.splitlines():
/aosp_15_r20/packages/modules/common/tools/
Dcheck_allowed_deps.py34 commit_msg = subprocess.run(["git", "show", "--no-patch", "--format=%B", sha], variable
38 for line in commit_msg:
/aosp_15_r20/tools/repohooks/rh/
H A Dconfig_test.py97 if opts.commit_msg is not None:
98 check_commit_msg(opts.commit_msg)
/aosp_15_r20/external/skia/infra/bots/
H A Dgit_utils.py51 def __init__(self, branch_name, commit_msg, upload=True, commit_queue=False, argument
54 self._commit_msg = commit_msg
/aosp_15_r20/external/rust/android-crates-io/crates/mls-rs/examples/
Dbasic_server_usage.rs88 let commit_msg = MlsMessage::from_bytes(&commit)?; in upload_commit() localVariable
89 let res = group.process_incoming_message(commit_msg)?; in upload_commit()
/aosp_15_r20/external/toolchain-utils/llvm_tools/
H A Dclean_up_old_llvm_patches.py62 commit_msg = textwrap.dedent(
75 ["git", "commit", "--quiet", "-a", "-m", commit_msg],
/aosp_15_r20/external/toolchain-utils/llvm_tools/patch_sync/src/
H A Dversion_control.rs177 commit_msg: &str, in repo_upload()
197 .and_then(|_| git_cd_cmd(git_path, ["commit", "-m", commit_msg])) in repo_upload()
/aosp_15_r20/external/webrtc/tools_webrtc/autoroller/unittests/
H A Droll_deps_test.py278 commit_msg = GenerateCommitMessage(NO_CHROMIUM_REVISION_UPDATE,
282 return [l.strip() for l in commit_msg.split('\n')]
/aosp_15_r20/external/toolchain-utils/afdo_tools/
H A Dupdate_kernel_afdo.py681 commit_msg = "\n".join(commit_message_lines)
689 commit_msg,
/aosp_15_r20/external/autotest/client/common_lib/
H A Drevision_control_unittest.py19 commit_msg = None variable in GitRepoManager
/aosp_15_r20/external/pytorch/.github/scripts/
H A Dtrymerge.py1084 commit_msg = pr.gen_commit_message(
1096 repo.amend_commit_message(commit_msg)
/aosp_15_r20/external/executorch/.github/scripts/
H A Dtrymerge.py1074 commit_msg = pr.gen_commit_message(
1086 repo.amend_commit_message(commit_msg)
/aosp_15_r20/external/angle/doc/
H A DContributingCode.md129 6. Install the Gerrit `commit_msg` hook