From ee81e49cb06e5515fbec5ffe19248b0860b25e1f Mon Sep 17 00:00:00 2001 From: Troy Sankey Date: Wed, 21 May 2025 20:07:19 -0700 Subject: [PATCH] fix: minimize repo permissions requested for Codespaces We only need to check out this repo, which is just the `contents`. --- .devcontainer/devcontainer.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index a2365c8..91a2329 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -14,7 +14,9 @@ "codespaces": { "repositories": { "edx/edx-themes": { - "permissions": "read-all" + "permissions": { + "contents": "read" + } } } }