File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ ENDCLASS.
6060
6161
6262
63- CLASS ZCL_ABAPLINT_ABAPGIT_EXT_CHKRN IMPLEMENTATION .
63+ CLASS zcl_abaplint_abapgit_ext_chkrn IMPLEMENTATION .
6464
6565
6666 METHOD constructor .
@@ -183,7 +183,8 @@ CLASS ZCL_ABAPLINT_ABAPGIT_EXT_CHKRN IMPLEMENTATION.
183183 rs_check_run-summary = li_json->get( | /check_runs/{ lv_check_run } /output/summary| ).
184184 rs_check_run-count_issues = li_json->get( | /check_runs/{ lv_check_run } /output/annotation_count| ).
185185
186- IF rs_check_run-summary CS 'Error' .
186+ " Some general error and not abaplint findings
187+ IF rs_check_run-summary CS 'error' AND rs_check_run-summary NS 'objects analyzed' .
187188 zcx_abapgit_exception=>raise( rs_check_run-summary ).
188189 ENDIF .
189190
You can’t perform that action at this time.
0 commit comments