From 1393600a80003c0021858be17ea54abb76d305b0 Mon Sep 17 00:00:00 2001 From: Matt Wise Date: Tue, 10 Mar 2026 18:37:57 -0700 Subject: [PATCH] fix(ci): remove pull_request trigger from Go Dependency Submission workflow The go-dependency-submission action requires `contents: write` permission to submit dependency snapshots, but `pull_request` events provide a read-only GITHUB_TOKEN. This causes "Resource not accessible by integration" errors on PRs. Since dependency snapshots only need to be submitted when code lands on main, the `pull_request` trigger is unnecessary. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/godeps.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/godeps.yaml b/.github/workflows/godeps.yaml index c362423..b6b08e2 100644 --- a/.github/workflows/godeps.yaml +++ b/.github/workflows/godeps.yaml @@ -1,6 +1,5 @@ name: Go Dependency Submission on: - pull_request: {} push: branches: - main