We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c2d22f commit 4fde280Copy full SHA for 4fde280
.github/workflows/commit-signoff-check.yml
@@ -0,0 +1,17 @@
1
+name: Commit Sign-off Check
2
+on:
3
+ # ATTENTION: See https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
4
+ # re security implications of using this trigger; in particular, no code from PR branches must
5
+ # be executed in any flows triggered by it
6
+ - pull_request_target
7
+
8
+jobs:
9
+ # Checks that all commits contain sign-offs
10
+ # Will add/remove comments as necessary based on the current status of the pull request.
11
+ check-signed-commits:
12
+ name: Check signed commits
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: debezium/dbz/.github/actions/check-dco@main
16
+ with:
17
+ add-comments: "true"
0 commit comments