From 659253dc390884c256376ab04e4d16c1d6220523 Mon Sep 17 00:00:00 2001 From: LostLuma Date: Sun, 26 Nov 2023 23:06:28 +0100 Subject: [PATCH] Validate DCoF PR signoff --- .github/workflows/signoff.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/signoff.yaml diff --git a/.github/workflows/signoff.yaml b/.github/workflows/signoff.yaml new file mode 100644 index 00000000..e61a4b3d --- /dev/null +++ b/.github/workflows/signoff.yaml @@ -0,0 +1,15 @@ +name: validate-signoff +on: + pull_request: + types: + - opened + - edited + +jobs: + validate: + runs-on: ubuntu-latest + steps: + - name: PR Description Check + uses: pythonistaguild/pr-description-check@v1.0 + with: + content: "[x] I have read and agree to the [Developer Certificate of Origin]"