From a5c4606a985471fbfc9e1128c4a2ddc6c0ef9a07 Mon Sep 17 00:00:00 2001 From: Lixou <82600264+DasLixou@users.noreply.github.com> Date: Mon, 9 Sep 2024 19:52:11 +0200 Subject: [PATCH] Fix Welcome Contributors CI (#15123) # Objective Fixes #15121 (hopefully, just read the docs, don't know how to test this tho) ## Solution Adds write permissions for pull-requests, see https://docs.github.com/en/rest/issues/comments?apiVersion=2022-11-28#create-an-issue-comment--fine-grained-access-tokens for more information. --- .github/workflows/welcome.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/welcome.yml b/.github/workflows/welcome.yml index 23bcbcf8be938..96a287981d2c2 100644 --- a/.github/workflows/welcome.yml +++ b/.github/workflows/welcome.yml @@ -11,6 +11,8 @@ on: jobs: welcome: runs-on: ubuntu-latest + permissions: + pull-requests: write steps: - uses: actions/github-script@v7 with: