From cb66b1aaf6c6976d5b6385e3c642e518bd52c15c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ricks?= Date: Mon, 8 May 2023 10:20:02 +0200 Subject: [PATCH] Fix: Set permissions for conventional commits workflow The conventional commits workflows requires write permissions for creating PR comments and read permissions to the repo contents. --- .github/workflows/conventional-commits.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/conventional-commits.yml b/.github/workflows/conventional-commits.yml index 68793a22d..036d0a537 100644 --- a/.github/workflows/conventional-commits.yml +++ b/.github/workflows/conventional-commits.yml @@ -3,6 +3,10 @@ name: Conventional Commits on: pull_request: +permissions: + pull-requests: write + contents: read + jobs: conventional-commits: name: Conventional Commits