From 211c6d0455963b917042c8912f6f519106527387 Mon Sep 17 00:00:00 2001 From: Andrey Belonogov Date: Thu, 9 Jul 2026 17:53:12 -0700 Subject: [PATCH] fix: grant pull-requests read permission to lint-pr-title workflow The reusable workflow launchdarkly/gh-actions lint-pr-title.yml requests 'pull-requests: read', but the caller granted 'pull-requests: none', causing a startup failure on PRs (including release-please PRs). Grant the required contents/pull-requests read permissions to the calling job. Co-authored-by: Cursor --- .github/workflows/lint-pr-title.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/lint-pr-title.yml b/.github/workflows/lint-pr-title.yml index 4ba79c13..4eed49dc 100644 --- a/.github/workflows/lint-pr-title.yml +++ b/.github/workflows/lint-pr-title.yml @@ -9,4 +9,7 @@ on: jobs: lint-pr-title: + permissions: + contents: read + pull-requests: read uses: launchdarkly/gh-actions/.github/workflows/lint-pr-title.yml@main