Skip to content

fix(grpc/exec): fix RefDec in exit's eventcache path #25079

fix(grpc/exec): fix RefDec in exit's eventcache path

fix(grpc/exec): fix RefDec in exit's eventcache path #25079

Workflow file for this run

name: Check pull request commits
on:
pull_request:
jobs:
checkpatch:
runs-on: ubuntu-latest
# Skip the workflow for Renovate PRs.
# One issue checkpatch checks is whether the commit subject is not too long. Renovate commits tend to have long
# subjects for a reason (e.g. including the digest). Other checkpatch checks are either ignored or relevant only
# for BPF code, so it's fine to skip the entire workflow for Renovate PRs. If there are more checks added then we
# should revisit it (and maybe update cilium-checkpatch).
if: ${{ github.event.pull_request.user.login != 'cilium-renovate[bot]' }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
fetch-depth: 0
- name: Run checkpatch.pl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
make checkpatch || (echo "Run 'make checkpatch' locally to investigate reports"; exit 1)