Skip to content

Commit

Permalink
actions: add DCO
Browse files Browse the repository at this point in the history
Signed-off-by: Heiko Thiery <[email protected]>
  • Loading branch information
hthiery committed Oct 28, 2024
1 parent f3c855c commit e37ad3c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/check-dco.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Check DCO

on: [push, pull_request, workflow_dispatch]

jobs:
check-dco:
name: Check Developer's Certificate of Origin
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4

- name: Check DCO
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip3 install -U dco-check
dco-check

0 comments on commit e37ad3c

Please sign in to comment.