From ee8d2bf175a088979d3492d6b113f5b8fbbffee4 Mon Sep 17 00:00:00 2001 From: Edgard Lorraine Messias Date: Mon, 22 May 2023 17:07:45 -0300 Subject: [PATCH] ci: Fixed permission for pr-comment --- .github/workflows/pr-comment.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-comment.yml b/.github/workflows/pr-comment.yml index b4233a1..63e425f 100644 --- a/.github/workflows/pr-comment.yml +++ b/.github/workflows/pr-comment.yml @@ -8,13 +8,14 @@ on: - reopened - unlocked -permissions: - pull-requests: write - jobs: pr-comment: runs-on: ubuntu-latest timeout-minutes: 10 + permissions: + contents: read + issues: write + pull-requests: write steps: - uses: actions/checkout@v3