Add Statistics Identifier String Table Size to OCP Telemetry String Log JSON Output #2088
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| # SPDX-License-Identifier: GPL-2.0-or-later | |
| # | |
| # This file is part of nvme. | |
| # Copyright (c) 2026 SUSE LLC | |
| # | |
| # Authors: Daniel Wagner <[email protected]> | |
| name: Checkpatch Review | |
| on: [pull_request] | |
| jobs: | |
| checkpatch: | |
| name: checkpatch review | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 'Calculate PR commits + 1' | |
| run: echo "PR_FETCH_DEPTH=$(( ${{ github.event.pull_request.commits }} + 1 ))" >> $GITHUB_ENV | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| fetch-depth: 0 | |
| - name: Run checkpatch review | |
| uses: webispy/checkpatch-action@58374fe5bb03358b23d3d6871e2ff290ce77fcd2 # v9 |