Skip to content

Commit

Permalink
Use payload_version instead of version
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita-tkachenko-datadog committed Feb 27, 2024
1 parent 2559d10 commit a63f17e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public JSONObject toJson(final BuildData buildData, final Run<?,?> run) {
.orElse(normalizeTag(rawGitBranch));

JSONObject payload = new JSONObject();
payload.put("version", buildData.getVersion());
payload.put("payload_version", buildData.getVersion());
payload.put("level", PipelineStepData.StepType.PIPELINE.getBuildLevel());
payload.put("url", buildData.getBuildUrl(""));

Expand Down

0 comments on commit a63f17e

Please sign in to comment.