Skip to content

Commit

Permalink
Add missing filePattern argument to ChangePropertyValue
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Jul 26, 2024
1 parent 897a1d0 commit 9edc42a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/yourorg/UpdateConcoursePipeline.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public Yaml.Mapping.Entry visitMappingEntry(Yaml.Mapping.Entry entry, ExecutionC
if (version.equals(tagFilterValue.getValue())) {
return e;
}
return (Yaml.Mapping.Entry) new ChangePropertyValue("source.tag_filter", version, null, null, null)
return (Yaml.Mapping.Entry) new ChangePropertyValue("source.tag_filter", version, null, null, null, null)
.getVisitor()
.visitNonNull(e, ctx);
}
Expand Down

0 comments on commit 9edc42a

Please sign in to comment.