Skip to content

Commit

Permalink
Merge pull request #104 from suzuki-shunsuke/ci-add-workflow-check-co…
Browse files Browse the repository at this point in the history
…mmit-verified

ci: add a workflow to check if commits in pull requests are verified
  • Loading branch information
suzuki-shunsuke authored Dec 28, 2024
2 parents 7ca55fc + 21f7eee commit cefa028
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/check-commit-signing.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Check if all commits are signed
on:
pull_request_target:
branches: [main]
concurrency:
group: ${{ github.workflow }}--${{ github.head_ref }} # github.ref is unavailable in case of pull_request_target
cancel-in-progress: true
jobs:
check-commit-signing:
uses: suzuki-shunsuke/check-commit-signing-workflow/.github/workflows/check.yaml@547eee345f56310a656f271ec5eaa900af46b0fb # v0.1.0
permissions:
contents: read
pull-requests: write

0 comments on commit cefa028

Please sign in to comment.