From 93d40a1b59a372aebcb592ade7b47e772fa189de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Nowak?= Date: Tue, 19 Sep 2023 09:14:00 +0200 Subject: [PATCH] docs(DEVELOPER): clarify permission for GH token (#11561) When setting up Kong `DEVELOPER.md` points to Github Documentation to generate a Github Access Token in order to download some essential repos. Unfortunately it does not explicitly state what permissions the token should grant. Add a note that it only needs Public Repositories (read-only) permission. --- DEVELOPER.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEVELOPER.md b/DEVELOPER.md index 17edfe1d567..99b866d4942 100644 --- a/DEVELOPER.md +++ b/DEVELOPER.md @@ -139,7 +139,7 @@ brew install libyaml ``` Now, we have to set environment variable `GITHUB_TOKEN` to download some essential repos. -You can follow [Managing your personal access token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens) to generate an access token. +You can follow [Managing your personal access token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens) to generate an access token. It does not need to have any other permission than `Public Repositories (read-only)`. ```bash # export GITHUB_TOKEN=ghp_xxxxxx_your_access_token