From 2bffb94655430b5a693a7c32f6b05207e36f0f39 Mon Sep 17 00:00:00 2001 From: Alex Kulikovskikh Date: Mon, 27 Sep 2021 15:58:45 -0400 Subject: [PATCH] fix: add `contents: read` permission --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5041282..c6b3845 100644 --- a/README.md +++ b/README.md @@ -99,12 +99,13 @@ with: jwtTtl: 3600 # 1 hour, default value ``` -**Notice:** In order for Github provided JWT to work workflow should have `id-token: write` specified in the `permissions` section of a workflow +**Notice:** In order for Github provided JWT to work workflow should have `id-token: write` & `contents: read` specified in the `permissions` section of a workflow ```yaml ... permissions: id-token: write + contents: read ... ```