From 8eb0d3587a495fb1d3a2b63af4f807870e3e6f7e Mon Sep 17 00:00:00 2001 From: Eddy Filip Date: Tue, 28 May 2024 10:11:44 +0200 Subject: [PATCH] Add check-signed-commits-action Add the 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