]> git.proxmox.com Git - mirror_lxcfs.git/blob - .github/workflows/commits.yml
c899249256eb8633cd64462e6ec4b952b1c3ee01
[mirror_lxcfs.git] / .github / workflows / commits.yml
1 name: Commits
2 on:
3 - pull_request
4
5 jobs:
6 dco-check:
7 name: Signed-off-by (DCO)
8 runs-on: ubuntu-20.04
9 steps:
10 - name: Get PR Commits
11 id: 'get-pr-commits'
12 uses: tim-actions/get-pr-commits@master
13 with:
14 token: ${{ secrets.GITHUB_TOKEN }}
15
16 - name: Check that all commits are signed-off
17 uses: tim-actions/dco@master
18 with:
19 commits: ${{ steps.get-pr-commits.outputs.commits }}