Skip to content

Commit db05a82

Browse files
committed
Remove filter from merge message
1 parent 9806699 commit db05a82

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/sync.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,15 +141,14 @@ This updates the rust-version file to {upstream_sha}."#,
141141
println!("incoming ref: {incoming_ref}");
142142

143143
let merge_message = format!(
144-
r#"Merge ref '{upstream_head_short}{filter}' from {UPSTREAM_REPO}
144+
r#"Merge ref '{upstream_head_short}' from {UPSTREAM_REPO}
145145
146146
Pull recent changes from {UPSTREAM_REPO} via Josh.
147147
148148
Upstream ref: {upstream_sha}
149149
Filtered ref: {incoming_ref}
150150
"#,
151151
upstream_head_short = &upstream_sha[..12],
152-
filter = self.context.config.construct_josh_filter()
153152
);
154153

155154
// Merge the fetched commit.

0 commit comments

Comments
 (0)