From 49e6213862f33ab1320d5da89fbe1eba6d8676f9 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Thu, 29 Jan 2026 20:41:32 +0200 Subject: [PATCH] fix(ci): modify permissions in PR Lint workflow Updated permissions for the PR Lint job to include write access for issues and pull requests. --- .github/workflows/pr-lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-lint.yml b/.github/workflows/pr-lint.yml index c2ea5c5..0d878cb 100644 --- a/.github/workflows/pr-lint.yml +++ b/.github/workflows/pr-lint.yml @@ -10,8 +10,6 @@ concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true -permissions: read-all - jobs: Linter: name: PR Lint @@ -21,6 +19,8 @@ jobs: statuses: write contents: read packages: read + issues: write + pull-requests: write steps: - name: Checkout