Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion workflows/issue-arborist.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,15 @@ 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

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 \
Expand Down
Loading