From 841b6ecc57a1ed5507c0687d4acb9f6704643c23 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 24 Jun 2026 18:43:36 +0000 Subject: [PATCH 1/2] Initial plan From 1ee70bb663958a71f663674bb7aa5431241b167b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 24 Jun 2026 18:49:10 +0000 Subject: [PATCH 2/2] fix(issue-arborist): extract github.repository into env var Co-authored-by: dsyme <7204669+dsyme@users.noreply.github.com> --- workflows/issue-arborist.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/workflows/issue-arborist.md b/workflows/issue-arborist.md index d71233e8..ac7eb49b 100644 --- a/workflows/issue-arborist.md +++ b/workflows/issue-arborist.md @@ -29,6 +29,7 @@ steps: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GH_AW_GITHUB_REPOSITORY: ${{ github.repository }} run: | # Create output directory mkdir -p /tmp/gh-aw/issues-data @@ -36,7 +37,7 @@ steps: echo "⬇ Downloading the last 100 open issues (excluding sub-issues)..." # Fetch the last 100 open issues that don't have a parent issue - gh issue list --repo ${{ github.repository }} \ + gh issue list --repo "$GH_AW_GITHUB_REPOSITORY" \ --search "-parent-issue:*" \ --state open \ --json number,title,author,createdAt,state,url,body,labels,updatedAt,closedAt,milestone,assignees \