diff --git a/.github/workflows/pr-signoff-check.yml b/.github/workflows/pr-signoff-check.yml new file mode 100644 index 0000000000..3523d9a1e8 --- /dev/null +++ b/.github/workflows/pr-signoff-check.yml @@ -0,0 +1,15 @@ +name: Check PR Sign-off + +on: [pull_request] + +jobs: + check-sign-off: + name: Write comment if unsigned commits found + env: + FORCE_COLOR: 1 + runs-on: ubuntu-latest + + steps: + - uses: live627/check-pr-signoff-action@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }}