Skip to content

.github/workflows/signed_commit.yml: Create CI for checking signed commits #1

.github/workflows/signed_commit.yml: Create CI for checking signed commits

.github/workflows/signed_commit.yml: Create CI for checking signed commits #1

Workflow file for this run

name: Signed Commit CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check for commit trailers
run: |
chmod +x ./scripts/signed.sh
./scripts/signed.sh
shell: bash