Skip to content

Commit

Permalink
add a GitHub Workflow to check if commits are signed
Browse files Browse the repository at this point in the history
  • Loading branch information
fharper committed Oct 11, 2023
1 parent 24be059 commit 7caf9d2
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/check-signed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
name: Check signed commits
on: pull_request

jobs:
signed-commits-check:
name: Validate if commits in PR are signed
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

0 comments on commit 7caf9d2

Please sign in to comment.