OBJECT
GpgSignature
Represents a GPG signature on a Commit or Tag.
link GraphQL Schema definition
- type GpgSignature implements GitSignature {
- # Email used to sign this object.
- : String!
- # True if the signature is valid and verified by GitHub.
- : Boolean!
- # Hex-encoded ID of the key that signed this object.
- : String
- # Payload for GPG signing object. Raw ODB object without the signature header.
- : String!
- # ASCII-armored signature header from object.
- : String!
- # GitHub user corresponding to the email signing this commit.
- : User
- # The state of this signature. `VALID` if signature is valid and verified by
- # GitHub, otherwise represents reason why signature is considered invalid.
- : GitSignatureState!
- }
link Require by
This element is not required by anyone