Skip to content

Commit

Permalink
add a GitHub workflow to validate if commits are signed on PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
fharper committed Apr 30, 2024
1 parent ad1cf77 commit 086c2b1
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/check-signed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Validate if commits are signed
on: [pull_request, pull_request_target]

jobs:
signed-commits-check:
runs-on: ubuntu-latest
steps:

- name: Check out the repository code
uses: actions/checkout@v4.1.4

- name: Check if the commits are signed
uses: 1Password/check-signed-commits-action@v1

0 comments on commit 086c2b1

Please sign in to comment.