DCO Check #8
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: DCO Check | |
| on: | |
| pull_request: | |
| branches: [main, develop] | |
| jobs: | |
| dco-check: | |
| name: Check DCO Sign-off | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check for DCO sign-off | |
| uses: tim-actions/dco@v1.1.0 | |
| with: | |
| # Require all commits to be signed off | |
| require-for-all-commits: true |