From a5fdb4798e05ab36244d5cda1f96a5c44e7954d5 Mon Sep 17 00:00:00 2001 From: Mostafa Moradian Date: Sun, 24 Dec 2023 13:46:09 +0100 Subject: [PATCH] Check signed commits in PR --- .github/workflows/commits-signed.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/commits-signed.yaml diff --git a/.github/workflows/commits-signed.yaml b/.github/workflows/commits-signed.yaml new file mode 100644 index 0000000..04f0801 --- /dev/null +++ b/.github/workflows/commits-signed.yaml @@ -0,0 +1,14 @@ +name: Check signed commits in PR +on: pull_request_target + +jobs: + check-signed-commits: + name: Check signed commits in PR + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + steps: + - uses: actions/checkout@v4 + - name: Check signed commits in PR + uses: 1Password/check-signed-commits-action@v1