- dependabot.yml: automated updates for GitHub Actions and Go modules - CODEOWNERS: auto-assign reviewers by path - SECURITY.md: vulnerability reporting policy - ISSUE_TEMPLATE/: structured bug reports and feature requests - PULL_REQUEST_TEMPLATE.md: PR checklist Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
51 lines
1.1 KiB
YAML
51 lines
1.1 KiB
YAML
name: Bug Report
|
|
description: Report a problem with the developer workspace or scripts
|
|
title: "[Bug]: "
|
|
labels: ["bug", "triage"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for reporting! Please fill out the details below.
|
|
|
|
- type: dropdown
|
|
id: os
|
|
attributes:
|
|
label: Operating System
|
|
options:
|
|
- macOS
|
|
- Windows
|
|
- Linux (Ubuntu/Debian)
|
|
- Linux (Other)
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: script
|
|
attributes:
|
|
label: Script/Command
|
|
description: Which script or command failed?
|
|
placeholder: "e.g., make setup, install-deps.ps1, core doctor"
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: What happened?
|
|
description: Describe the issue
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: expected
|
|
attributes:
|
|
label: Expected behaviour
|
|
description: What should have happened?
|
|
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Error output
|
|
description: Paste any error messages
|
|
render: shell
|