debezium/dbz#1518 fix EventDeserializer composition #13
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Commit Sign-off Check | |
| on: | |
| # ATTENTION: See https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ | |
| # re security implications of using this trigger; in particular, no code from PR branches must | |
| # be executed in any flows triggered by it | |
| - pull_request_target | |
| jobs: | |
| # Checks that all commits contain sign-offs | |
| # Will add/remove comments as necessary based on the current status of the pull request. | |
| check-signed-commits: | |
| name: Check signed commits | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: debezium/dbz/.github/actions/check-dco@main | |
| with: | |
| add-comments: "true" |