You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: avoid duplicate package suffix in Go benchmarks [#336] (#337)
- Fixes duplicate suffixes for users who worked around #264 by including
package names in benchmark names
- Detects when benchmark name already contains package reference (full
path, underscored, or ≥2 trailing segments) and skips suffix
- Adds go-force-package-suffix option to always append suffix regardless
of suffix detection
description: Manage GitHub issues using the `gh` CLI. Use when the user asks to list, view, create, edit, close, reopen, comment on, or search GitHub issues.
4
+
tools: Bash
5
+
---
6
+
7
+
# GitHub Issues Skill
8
+
9
+
This project's repository is `benchmark-action/github-action-benchmark`. Always use `-R benchmark-action/github-action-benchmark` unless the user explicitly specifies a different repo.
10
+
11
+
## Common Operations
12
+
13
+
### List issues
14
+
```bash
15
+
gh issue list -R benchmark-action/github-action-benchmark
16
+
gh issue list -R benchmark-action/github-action-benchmark --state all
17
+
gh issue list -R benchmark-action/github-action-benchmark --state closed
18
+
gh issue list -R benchmark-action/github-action-benchmark --label "bug"
19
+
gh issue list -R benchmark-action/github-action-benchmark --assignee "@me"
20
+
gh issue list -R benchmark-action/github-action-benchmark --author monalisa
21
+
gh issue list -R benchmark-action/github-action-benchmark --search "error no:assignee"
22
+
gh issue list -R benchmark-action/github-action-benchmark --limit 100
23
+
gh issue list -R benchmark-action/github-action-benchmark --json number,title,state,labels,url
0 commit comments