From c24c74ebc88de2f0cb40b2e7576c4796d5c4764e Mon Sep 17 00:00:00 2001 From: Jikun Date: Thu, 7 Mar 2024 01:06:04 +0800 Subject: [PATCH 1/2] ci: fix 403 failure in azuresdkdrop workflow --- .github/workflows/azuresdkdrop.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/azuresdkdrop.yml b/.github/workflows/azuresdkdrop.yml index 9d338a1f..25a1a054 100644 --- a/.github/workflows/azuresdkdrop.yml +++ b/.github/workflows/azuresdkdrop.yml @@ -3,6 +3,9 @@ name: Create release and publish to drop +permissions: + actions: write + on: workflow_dispatch jobs: From bc36a83bef3691c209883cf9adf793c7a01f5b88 Mon Sep 17 00:00:00 2001 From: Jikun Date: Thu, 7 Mar 2024 11:08:59 +0800 Subject: [PATCH 2/2] ci: set permissions to write-all to fix azuresdkdrop workflow --- .github/workflows/azuresdkdrop.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/azuresdkdrop.yml b/.github/workflows/azuresdkdrop.yml index 25a1a054..f10d16f9 100644 --- a/.github/workflows/azuresdkdrop.yml +++ b/.github/workflows/azuresdkdrop.yml @@ -3,8 +3,7 @@ name: Create release and publish to drop -permissions: - actions: write +permissions: write-all on: workflow_dispatch