Files
coffeechat/.github/workflows/check-signed.yml
Frédéric Harper f270d226f5 Fix the signing commits check GitHub workflow for PRs from forks
I also upgraded the actions/checkout GitHub Action and made the names clearer.
2024-04-30 11:37:26 -04:00

15 lines
335 B
YAML

---
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