Skip to content

Commit

Permalink
fix: correct typo in enum for App key permission enum
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Nov 22, 2021
1 parent 145fb4e commit de51a73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion payload-schemas/api.github.com/common/app.schema.json
Expand Up @@ -45,7 +45,7 @@
"emails": { "type": "string", "enum": ["read", "write"] },
"environments": { "type": "string", "enum": ["read", "write"] },
"issues": { "type": "string", "enum": ["read", "write"] },
"keys": { "type": "string", "enum": ["read, write"] },
"keys": { "type": "string", "enum": ["read", "write"] },
"members": { "type": "string", "enum": ["read", "write"] },
"metadata": { "type": "string", "enum": ["read", "write"] },
"organization_administration": {
Expand Down
2 changes: 1 addition & 1 deletion payload-types/schema.d.ts
Expand Up @@ -835,7 +835,7 @@ export interface App {
emails?: "read" | "write";
environments?: "read" | "write";
issues?: "read" | "write";
keys?: "read, write";
keys?: "read" | "write";
members?: "read" | "write";
metadata?: "read" | "write";
organization_administration?: "read" | "write";
Expand Down

0 comments on commit de51a73

Please sign in to comment.