From 22261f2dce4a6b8b0d28b2173ec4eb95a017c6f5 Mon Sep 17 00:00:00 2001 From: Eduard Filip Date: Wed, 29 May 2024 14:33:19 +0200 Subject: [PATCH] Run 1Password/check-signed-commits-action for PRs (#53) Add the 1Password/check-signed-commits-action that will leave a handy comment if a PR contains commits that are not signed. --- .github/workflows/pr-check-signed-commits.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/pr-check-signed-commits.yml diff --git a/.github/workflows/pr-check-signed-commits.yml b/.github/workflows/pr-check-signed-commits.yml new file mode 100644 index 0000000..77a8b8a --- /dev/null +++ b/.github/workflows/pr-check-signed-commits.yml @@ -0,0 +1,13 @@ +name: Check signed commits in PR +on: pull_request_target + +jobs: + build: + name: Check signed commits in PR + permissions: + contents: read + pull-requests: write + runs-on: ubuntu-latest + steps: + - name: Check signed commits in PR + uses: 1Password/check-signed-commits-action@v1