From db364128545c317a6decf48030da71eb85abcb29 Mon Sep 17 00:00:00 2001 From: Chris Burns <29541485+ChrisJBurns@users.noreply.github.com> Date: Mon, 18 Aug 2025 21:13:34 +0100 Subject: [PATCH] provides github token for claude code action (#462) Currently when running the `gh` command in the action, there is an error in the action logs that suggests that the GH_TOKEN isn't being set. We've solved this internally in our company by providing the GH_TOKEN in the action. --- .github/workflows/issue-triage.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/issue-triage.yml b/.github/workflows/issue-triage.yml index 322b12d..beaeef2 100644 --- a/.github/workflows/issue-triage.yml +++ b/.github/workflows/issue-triage.yml @@ -104,3 +104,5 @@ jobs: mcp_config: /tmp/mcp-config/mcp-servers.json timeout_minutes: "5" anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}