Skip to content

Commit 7a69ade

Browse files
Fix GitHub.create_issue() call syntax
- Remove labels parameter that was causing MethodError - Use correct positional/keyword argument format - Simplify to just title, body, and auth parameters 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent bb4686c commit 7a69ade

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/LinearSolveAutotune/src/telemetry.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,10 +409,9 @@ $content
409409

410410
# Create the issue with labels
411411
issue_result = GitHub.create_issue(
412-
repo_obj;
412+
repo_obj,
413413
title=issue_title,
414414
body=issue_body,
415-
labels=["benchmark-data"],
416415
auth=auth
417416
)
418417

0 commit comments

Comments
 (0)