Skip to content

Commit cc8f1aa

Browse files
authored
Add workflow to do dco check, since github app is not working at the moment, but blocking all PRs in everest-core (EVerest#707)
Signed-off-by: Andreas Heinrich <andreas.heinrich@rwth-aachen.de>
1 parent f73620c commit cc8f1aa

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/dco-check.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: DCO Check
2+
on:
3+
pull_request: {}
4+
jobs:
5+
dco_check:
6+
name: DCO Check
7+
runs-on: ubuntu-22.04
8+
steps:
9+
- uses: actions/checkout@v3
10+
- name: Set up Python 3.x
11+
uses: actions/setup-python@v4
12+
with:
13+
python-version: '3.x'
14+
- name: Install dco-check
15+
run: pip3 install -U dco-check==0.4.0
16+
- name: Check DCO
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19+
run: |
20+
dco-check

0 commit comments

Comments
 (0)