Files
probot.github.io/_apps/gpg.md
Brandon Keepers edf94dea24 Sync data
2018-02-26 19:13:28 +00:00

3.4 KiB

title, description, slug, screenshots, authors, repository, stars, updated, host, installations, organizations
title description slug screenshots authors repository stars updated host installations organizations
GPG Enforce GPG signatures on pull requests gpg
https://github.com/jarrodldavis/probot-gpg/raw/develop/docs/screenshot-success.png
https://github.com/jarrodldavis/probot-gpg/raw/develop/docs/screenshot-failure.png
jarrodldavis
jarrodldavis/probot-gpg 15 2018-01-17 01:45:53 UTC http://probot-gpg-production.herokuapp.com 27
ahmadnassri
saltstack
TokTok
serokell
flyve-mdm
mattstratton
twuni
nikolay
glpi-project
luanmuniz

Usage

Configure this app on your organizations and repositories. Be sure to enable required status checks if you want to enforce GPG signatures on all pull requests.

How it works

Git supports signing commits with GPG keys to verify commit authorship beyond the easy-to-forge author field.

GitHub supports verifying GPG signatures on commits and has an excellent series of help articles for creating a GPG key, using it with git locally, and linking it to a GitHub account.

After installation, this app checks all commits of new (or newly updated) pull requests for valid GPG signatures according to the GitHub API. Note that for the status check to be success, every contributor of a pull request must:

  • set up a GPG key on their local machine
  • sign all of their commits in the pull request with that key
  • link that key with their GitHub account

GPG status check success screenshot

Otherwise, the app will set the status to failure.

GPG status check failed screenshot

Email privacy

If you or any of your contributors use a GitHub-provided noreply email address to keep a personal email address private, that noreply address should be used when creating a GPG key. Make sure that git's config is also using that noreply address so that GitHub associates the GPG key correctly and validates it.

Further reading