diff options
author | Martin Robinson <mrobinson@igalia.com> | 2023-07-13 09:45:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-13 07:45:48 +0000 |
commit | d5202a4a98027b443a6cc04b4b977807131efd5a (patch) | |
tree | 7540e3a25da27cacd0c8462e4a0a4a7dc8e89ac2 /python/tidy/tidy.py | |
parent | 9eee5171324553e60d784b989af5f16be9100a11 (diff) | |
download | servo-d5202a4a98027b443a6cc04b4b977807131efd5a.tar.gz servo-d5202a4a98027b443a6cc04b4b977807131efd5a.zip |
Enable the GitHub merge queue (#29989)
Signed-off-by: Martin Robinson <mrobinson@igalia.com>
Diffstat (limited to 'python/tidy/tidy.py')
-rw-r--r-- | python/tidy/tidy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tidy/tidy.py b/python/tidy/tidy.py index 45e4260ab13..4e3bca9f5b4 100644 --- a/python/tidy/tidy.py +++ b/python/tidy/tidy.py @@ -153,7 +153,7 @@ class FileList(object): yield os.path.join(root, f) def _git_changed_files(self): - args = ["git", "log", "-n1", "--merges", "--format=%H"] + args = ["git", "log", "-n1", "--committer", "noreply@github.com", "--format=%H"] last_merge = subprocess.check_output(args, universal_newlines=True).strip() if not last_merge: return |