File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -641,7 +641,12 @@ jobs:
641
641
--token ${{github.token}} \
642
642
--actor ${{github.actor}} \
643
643
--commit ${{needs.check_and_prepare.outputs.github_ref}} \
644
- --run_id ${{github.run_id}}
644
+ --run_id ${{github.run_id}}
645
+ - name : Print SDK package info
646
+ run : |
647
+ if [[ "${{ github.event.inputs.packaged_sdk_run_id }}" != "" ]]; then
648
+ echo "run_id: ${{ github.event.inputs.packaged_sdk_run_id }}"
649
+ fi
645
650
- name : Summarize results into GitHub log
646
651
run : python scripts/gha/summarize_test_results.py --dir test_results --github_log
647
652
Original file line number Diff line number Diff line change @@ -460,7 +460,7 @@ def main(argv):
460
460
logs_zip = zipfile .ZipFile (logs_compressed_data )
461
461
m = get_message_from_github_log (
462
462
logs_zip ,
463
- r'build-20.* /.*Fetch prebuilt .*\.txt' ,
463
+ r'summarize-results /.*Print SDK package info .*\.txt' ,
464
464
r'run_id: ([0-9]+)$' )
465
465
if m :
466
466
packaging_run = m .group (1 )
You can’t perform that action at this time.
0 commit comments