From b3346cbc2518c13bbae2f8bec80dffce1617d042 Mon Sep 17 00:00:00 2001 From: Eduard Filip Date: Tue, 28 May 2024 19:36:34 +0200 Subject: [PATCH] Run 1Password/check-signed-commits-action for PRs (#188) 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 00000000..77a8b8ad --- /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