File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 6060 echo '<details>' >> $env:GITHUB_STEP_SUMMARY
6161 echo '' >> $env:GITHUB_STEP_SUMMARY
6262 echo '```json' >> $env:GITHUB_STEP_SUMMARY
63- echo Get-Content -Path results.json >> $env:GITHUB_STEP_SUMMARY
63+ Get-Content -Path results.json >> $env:GITHUB_STEP_SUMMARY
6464 echo '' >> $env:GITHUB_STEP_SUMMARY
6565 echo '```' >> $env:GITHUB_STEP_SUMMARY
6666 echo '' >> $env:GITHUB_STEP_SUMMARY
Original file line number Diff line number Diff line change @@ -244,10 +244,13 @@ fn load_bazel_info(
244244const BUFFER_SIZE : usize = 8192 ;
245245
246246/// File extensions to exclude.
247- const IGNORED_EXTENSIONS : [ & str ; 3 ] = [
247+ const IGNORED_EXTENSIONS : [ & str ; 6 ] = [
248248 ".runfiles_manifest" ,
249249 "volatile-status.txt" ,
250250 "stable-status.txt" ,
251+ "MANIFEST" ,
252+ ".pdb" ,
253+ ".d" ,
251254] ;
252255
253256async fn hash ( args : HashArgs ) -> anyhow:: Result < ( ) > {
You can’t perform that action at this time.
0 commit comments