| 12345678910111213141516171819 |
- name: 'Show Cache Stats'
- description: 'Displays statistics for ccache and Bazel remote cache to help analyze cache performance and hit rates'
- inputs:
- clear_stats:
- description: 'Whether to clear ccache stats after displaying (default: true)'
- required: true
- type: boolean
- default: true
- runs:
- using: 'composite'
- steps:
- - name: Show ccache Stats
- uses: ./.github/actions/cache-ccache-stats
- with:
- clear_stats: ${{ inputs.clear_stats }}
- - name: Show Cache Folder Stats
- uses: ./.github/actions/cache-folder-stats
|