plugins/ocp: Prevent Seg Fault during OCP Data Area 1 and 2 Telemetry log Parsing #1767
Workflow file for this run
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
| 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@v5 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| fetch-depth: 0 | |
| - name: Run checkpatch review | |
| uses: webispy/checkpatch-action@v9 |