From a8f2328f0ad5ca2751663d869d6bceb5421b64ae Mon Sep 17 00:00:00 2001 From: Cory LaNou Date: Tue, 12 Aug 2025 15:01:42 -0500 Subject: [PATCH] Add workflow permissions for PR commenting MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add explicit permissions to the manual integration test workflow to allow commenting on pull requests and issues. This fixes the "Resource not accessible by integration" error when the workflow attempts to post test results to a PR. Permissions added: - contents: read (to checkout code) - issues: write (to comment on issues) - pull-requests: write (to comment on PRs) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/integration-manual.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/integration-manual.yml b/.github/workflows/integration-manual.yml index 7828004..16b8670 100644 --- a/.github/workflows/integration-manual.yml +++ b/.github/workflows/integration-manual.yml @@ -33,6 +33,11 @@ on: default: false type: boolean +permissions: + contents: read + issues: write + pull-requests: write + env: GO_VERSION: "1.21"