From df89aa5b28f32913cdaf8ac3dc42c90919926e4b Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 5 Sep 2024 09:31:04 -0500 Subject: [PATCH] Explicitly require write permissions on release process (#9198) The default token for this repository is now read-only but this workflow needs writable permissions. Local testing seems to show that this should work so let's try it out here. --- .github/workflows/release-process.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release-process.yml b/.github/workflows/release-process.yml index 97f9417ab1fa..c8436ff2f8b5 100644 --- a/.github/workflows/release-process.yml +++ b/.github/workflows/release-process.yml @@ -32,6 +32,9 @@ on: required: false default: 'cut' +permissions: + contents: write + jobs: release_process: if: "github.repository == 'bytecodealliance/wasmtime' || !github.event.schedule"