We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10a83d9 commit 9ec94f0Copy full SHA for 9ec94f0
.github/workflows/dco.yaml
@@ -0,0 +1,21 @@
1
+name: DCO
2
+# ref: https://github.com/anchore/syft/pull/2926/files
3
+on:
4
+ pull_request:
5
+jobs:
6
+ dco:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+
11
+ - name: Setup Python 3.x
12
+ uses: actions/setup-python@v5
13
+ with:
14
+ python-version: 3.x
15
16
+ - name: Check DCO
17
+ env:
18
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19
+ run: |
20
+ pip3 install -U dco-check
21
+ dco-check --verbose --exclude-pattern 'pre-commit-ci\[bot\]@users\.noreply\.github\.com'
0 commit comments