diff --git a/.github/workflows/check-signed-off.yml b/.github/workflows/check-signed-off.yml new file mode 100644 index 0000000000..94cb58340d --- /dev/null +++ b/.github/workflows/check-signed-off.yml @@ -0,0 +1,18 @@ +name: Check signed-off in commits +on: + pull_request: + types: + - synchronize + - opened + - reopened + +jobs: + check-signed-commits: + name: Check signed commits in PR + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: read + steps: + - name: Check signed commits in PR + uses: 1Password/check-signed-commits-action@v1