Skip to content

Commit e3b1f7c

Browse files
pgesiakclaude
andcommitted
fix(ci): quote color values in labels.yml
Fixed YAML parsing error where hex color values were interpreted as numbers instead of strings for plugin labels. Changes: - .github/labels.yml: Added quotes around color values for plugin:* labels - CLAUDE.md: Added best practices for comprehensive issue reports Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent fd2161f commit e3b1f7c

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/labels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,23 +66,23 @@
6666

6767
# Component labels
6868
- name: plugin
69-
color: 5319e7
69+
color: "5319e7"
7070
description: Related to a plugin
7171

7272
- name: plugin:plugin-dev
73-
color: 5319e7
73+
color: "5319e7"
7474
description: plugin-dev plugin
7575

7676
- name: plugin:llmstxt
77-
color: 5319e7
77+
color: "5319e7"
7878
description: llmstxt plugin
7979

8080
- name: plugin:openclaw-docs
81-
color: 5319e7
81+
color: "5319e7"
8282
description: openclaw-docs plugin
8383

8484
- name: plugin:high-signal-output
85-
color: 5319e7
85+
color: "5319e7"
8686
description: high-signal-output plugin
8787

8888
- name: marketplace

CLAUDE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -514,6 +514,8 @@ Templates enforce structure and collect required information upfront.
514514
- Provide all requested information in the template
515515
- Use descriptive titles: `[Bug]: Login fails on Safari` not `bug`
516516
- Link PRs to issues using `Fixes #123` or `Closes #456`
517+
- **Create comprehensive reports:** Include all context (steps to reproduce, environment details, error messages, relevant code snippets) directly in the issue body
518+
- **Handle attachments properly:** Attach files (screenshots, logs, sample data) directly to the GitHub issue using drag-and-drop or the attachment button. **Never commit attachments to the repository** - they belong in the issue tracker, not version control
517519

518520
### For Maintainers
519521

0 commit comments

Comments
 (0)