From 34f2e0bcdc000dfae9c9347226e68317a6f32254 Mon Sep 17 00:00:00 2001 From: Floris van der Grinten Date: Mon, 12 Jun 2023 17:46:21 +0200 Subject: [PATCH] Add GitHub Actions workflow to check signed commits --- .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 000000000..2e259748b --- /dev/null +++ b/.github/workflows/pr-check-signed-commits.yml @@ -0,0 +1,13 @@ +name: Check signed commits in PR +on: pull_request + +jobs: + build: + name: Check signed commits in PR + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v3 + + - name: Check signed commits in PR + uses: 1Password/check-signed-commits-action@v1