forgejo-guardian/.forgejo/workflows/dco_checker.yml
Awiteb 8a80e58e54
All checks were successful
Write changelog / write-changelog (push) Successful in 4s
Rust CI / Rust CI (push) Successful in 7m0s
CD / build-assets (aarch64-unknown-linux-gnu) (push) Successful in 7m7s
CD / build-assets (aarch64-unknown-linux-musl) (push) Successful in 7m8s
CD / build-assets (x86_64-unknown-linux-gnu) (push) Successful in 4m11s
CD / build-assets (x86_64-unknown-linux-musl) (push) Successful in 4m14s
CD / release (push) Successful in 12s
chore: Add CI/CD
Signed-off-by: Awiteb <a@4rs.nl>
2024-11-16 13:12:59 +00:00

29 lines
932 B
YAML

name: DCO checker
on:
pull_request:
branches: [master]
types: [opened, synchronize, reopened]
jobs:
check:
name: DCO checker
runs-on: debian
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: DCO checker
run: |
commits=$(git rev-list origin/master..HEAD)
for commit in $commits; do
commit_subject=$(git show --quiet --format=%s $commit)
commit_sha=$(echo $commit | cut -c1-10)
echo "Checking commit $commit_sha \"$commit_subject\""
if ! git show --quiet --format=%B $commit | grep -q "Signed-off-by:"; then
author=$(git show --quiet --format=%an $commit)
echo "Commit $commit by $author is missing the 'Signed-off-by:' line"
exit 1
fi
done
echo "All commits have the 'Signed-off-by:' line."