https://github.com/bogdal/export-github-org-gpg-keys
Exports the GPG keys of all your organization's members.
https://github.com/bogdal/export-github-org-gpg-keys
Last synced: 11 months ago
JSON representation
Exports the GPG keys of all your organization's members.
- Host: GitHub
- URL: https://github.com/bogdal/export-github-org-gpg-keys
- Owner: bogdal
- Created: 2022-02-28T23:06:53.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-01T11:49:27.000Z (over 4 years ago)
- Last Synced: 2025-03-16T01:41:29.987Z (over 1 year ago)
- Language: Shell
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Script that exports all of the available GPG keys of the Github organization's members. It's may be helpful when you verify the commit signatures locally.
GH token is requried. Go to the [Personal access tokens](https://github.com/settings/tokens) page and generate a new one with the `read:org` scope.
> The `read: org` scope is optional but allows to get a complete list of the organization's members, including private onces.
Let's export all available keys from Github and import them into GPG:
```bash
export GH_TOKEN=
./export-org-keys.sh | gpg --import -
```