Skip to content

Commit

Permalink
Add null ghActionRun property
Browse files Browse the repository at this point in the history
  • Loading branch information
Akirathan committed Feb 24, 2025
1 parent 3c5a5a3 commit d03d642
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
import java.util.List;

public record Results(
@JsonProperty("$schema") URI schema, Configuration configuration, List<Result> results) {
@JsonProperty("$schema") URI schema, Configuration configuration, Object ghActionRun, List<Result> results) {

public static Results createEmpty(URI schemaUri) {
var conf = Configuration.fromSystemProperties();
return new Results(schemaUri, conf, new ArrayList<>());
return new Results(schemaUri, conf, null, new ArrayList<>());
}
}

0 comments on commit d03d642

Please sign in to comment.