Skip to content

Alert Unsigned Commits #12565

Alert Unsigned Commits

Alert Unsigned Commits #12565

name: Alert Unsigned Commits
on:
pull_request:
types: [assigned, opened, reopened, synchronize, ready_for_review, review_requested, auto_merge_enabled]
pull_request_review:
types: [submitted]
permissions:
pull-requests: write
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
alert-unsigned:
name: Alert Unsigned Commits
runs-on: ubuntu-latest
steps:
- name: Alert Unsigned Commits
run: |
set -x
HEAD_SHA=${{ github.event.pull_request.head.sha }}
PR_NUMBER=${{ github.event.pull_request.number }}
BRAVE_CORE_PATH=brave/brave-core
commit=$(gh api -H "Accept: application/vnd.github+json" "/repos/${BRAVE_CORE_PATH}/commits/${HEAD_SHA}")
verification=$(jq -r .commit.verification <<<"$commit")
verified=$(jq -r .verified <<<"$verification")
author_login=$(jq -r .author.login <<<"$commit")
if [[ "$verified" != "true" ]]; then
msg=":warning: PR head is an unsigned commit
commit: ${HEAD_SHA}
reason: $(jq -r .reason <<<"$verification")
Please follow the handbook to configure [commit signing](https://github.com/brave/handbook/blob/master/development/commit-and-tag-signing.md)
cc: @${author_login}
"
gh -R "$BRAVE_CORE_PATH" pr comment "$PR_NUMBER" -b "$msg"
fi