Github App Permissions #328
Replies: 1 comment
-
Hi @rsitro-chrono, We discussed this over email, but also adding here since others might also have the same question.
We use this to show secrets that have not been rotated for a long time. As you can see from this GitHub API documentation, it only returns the name of the secret, when it was created, and when it was last updated. We have designed our App to not have access to customer code or secrets. |
Beta Was this translation helpful? Give feedback.
-
According to your doc it states the only permissions required are
actions: read
andsecrets metadata: read
. However when installing the app I see it actually is requesting:"permissions": {
"actions": "read",
"secrets": "read",
"metadata": "read",
"organization_secrets": "read"
},
Any way I can limit this to only actions:read and metadata :read?
Beta Was this translation helpful? Give feedback.
All reactions