1name: DCO 2on: 3 pull_request: 4jobs: 5 check: 6 runs-on: ubuntu-latest 7 steps: 8 - uses: actions/checkout@v2 9 - name: Set up Python 3.x 10 uses: actions/setup-python@v1 11 with: 12 python-version: '3.x' 13 - name: Check DCO 14 env: 15 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 16 run: | 17 pip3 install -U dco-check 18 dco-check -e "49699333+dependabot[bot]@users.noreply.github.com" 19