Skip to content

Commit

Permalink
Fix the signing commits check GitHub workflow for PRs from forks (#2167)
Browse files Browse the repository at this point in the history
  • Loading branch information
fharper authored Apr 30, 2024
1 parent 400665a commit 6eb1d3f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/check-signed.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
name: Validate if commits in PR are signed
on: pull_request
name: Validate if commits are signed
on: [pull_request, pull_request_target]

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

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

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

0 comments on commit 6eb1d3f

Please sign in to comment.