Skip to content

Add a sign-off check in the workflow #2

Add a sign-off check in the workflow

Add a sign-off check in the workflow #2

name: Check Signed-off Commits
on:
pull_request:
types:
- synchronize
- opened
- reopened
jobs:
check-signed-off:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Check signed-off commits
run: |
for commit in $(git rev-list --first-parent ${{ github.event.before }}..${{ github.sha }}); do
if ! git log --format=%B -n 1 $commit | grep -q "^Signed-off-by: "; then
echo "Commit $commit is not signed off."
exit 1
fi
done