From 36757d93c666d9d3866affba9aa8cdc34ea1c269 Mon Sep 17 00:00:00 2001 From: "cloudingenium-automation[bot]" Date: Tue, 28 Apr 2026 20:06:19 +0000 Subject: [PATCH] fix(ci): grant commitlint workflow pull-requests:read permission wagoid/commitlint-github-action calls the GitHub API to list a PR's commits. Without pull-requests:read it fails with: error trying to get list of pull request's commits / Resource not accessible by integration. Adding the permission unblocks dependabot PRs that hit this on the recreate. Mirrors the working config in Infra.BauxTP.com. Surfaced by /jc-coding-fleet-driver Phase D follow-up 2026-04-28. --- .github/workflows/commitlint.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index 407b69c..341681a 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -4,6 +4,7 @@ on: branches: [main, master] permissions: contents: read + pull-requests: read jobs: commitlint: runs-on: ubuntu-latest