We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96a0d49 commit de9326fCopy full SHA for de9326f
.github/workflows/test-gpg.yml
@@ -33,7 +33,9 @@ jobs:
33
34
- name: Verify commit is signed
35
run: |
36
- if git log -1 --format="%G?" | grep -q "G"; then
+ SIG_STATUS=$(git log -1 --format="%G?")
37
+ echo "Signature status: $SIG_STATUS"
38
+ if [[ "$SIG_STATUS" == "G" ]] || [[ "$SIG_STATUS" == "U" ]]; then
39
echo "✅ Commit is properly signed!"
40
else
41
echo "❌ Commit is NOT signed!"
0 commit comments