File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -304,8 +304,12 @@ public void execute(BuildResultAdapter buildResult) {
304
304
addCustomValueAndSearchLink (develocity , "CI workflow" , value ));
305
305
envVariable ("GITHUB_RUN_ID" , providers ).ifPresent (value ->
306
306
addCustomValueAndSearchLink (develocity , "CI run" , value ));
307
+ envVariable ("GITHUB_ACTION" , providers ).ifPresent (value ->
308
+ addCustomValueAndSearchLink (develocity , "CI step" , value ));
309
+ envVariable ("GITHUB_JOB" , providers ).ifPresent (value ->
310
+ addCustomValueAndSearchLink (develocity , "CI job" , value ));
307
311
envVariable ("GITHUB_HEAD_REF" , providers ).filter (value -> !value .isEmpty ()).ifPresent (value ->
308
- buildScan .value ("PR branch" , value ));
312
+ buildScan .value ("PR branch" , value ));
309
313
}
310
314
311
315
if (isGitLab (providers )) {
You can’t perform that action at this time.
0 commit comments