Skip to content

Commit 2cc9974

Browse files
Add DCO Check workflow for pull requests
1 parent 359575d commit 2cc9974

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/dco-check.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: DCO Check
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
7+
jobs:
8+
dco:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout code
12+
uses: actions/checkout@v2
13+
14+
- name: Check DCO
15+
uses: wip/apply-dco@v1
16+
with:
17+
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)