We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52ec7fe commit 3c851f1Copy full SHA for 3c851f1
.github/workflows/dco.yml
@@ -1,12 +1,17 @@
1
-name: DCO
2
-
3
-on:
4
- pull_request:
5
- branches: [main]
+name: Sanity check
+on: [pull_request]
6
7
jobs:
8
- dco:
9
- name: DCO Check
+ commits_check_job:
10
runs-on: ubuntu-latest
+ name: Commits Check
11
steps:
12
- - uses: tim-actions/dco@main
+ - name: Get PR Commits
+ id: 'get-pr-commits'
+ uses: tim-actions/get-pr-commits@master
+ with:
13
+ token: ${{ secrets.GITHUB_TOKEN }}
14
+ - name: DCO Check
15
+ uses: tim-actions/dco@master
16
17
+ commits: ${{ steps.get-pr-commits.outputs.commits }}
0 commit comments