Skip to content

Packed-panel CQ4 weight format: NEON + SME2 kernels #1354

Packed-panel CQ4 weight format: NEON + SME2 kernels

Packed-panel CQ4 weight format: NEON + SME2 kernels #1354

Workflow file for this run

name: DCO Check
on:
pull_request:
types: [opened, synchronize, reopened]
permissions:
contents: read
concurrency:
group: dco-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
dco-check:
runs-on: ubuntu-latest
timeout-minutes: 5
name: DCO Check
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check DCO
run: |
set -euo pipefail
missing=0
while read -r commit; do
author="$(git show -s --format='%an <%ae>' "$commit")"
if ! git show -s --format='%B' "$commit" | grep -Fqi "Signed-off-by: $author"; then
echo "::error::Commit $commit is missing Signed-off-by: $author"
missing=1
fi
done < <(git rev-list --no-merges "${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}")
exit "$missing"