- Add .github/workflows/docs-to-issues.yml to convert docs/issues/*.md to GitHub Issues - Support YAML frontmatter for title, labels, priority, assignees, milestone - Auto-create missing labels with predefined color scheme - Support sub-issue creation from H2 sections (create_sub_issues: true) - Move processed files to docs/issues/created/ to prevent duplicates - Add dry-run and manual file selection workflow inputs - Add _TEMPLATE.md with frontmatter documentation - Add README.md with usage instructions - Add implementation plan at docs/plans/docs_to_issues_workflow.md
46 lines
859 B
Markdown
46 lines
859 B
Markdown
---
|
|
# REQUIRED: Issue title
|
|
title: "Your Issue Title"
|
|
|
|
# OPTIONAL: Labels to apply (will be created if missing)
|
|
labels:
|
|
- feature # feature, bug, enhancement, testing, documentation
|
|
- backend # backend, frontend, ui, security, caddy, database
|
|
|
|
# OPTIONAL: Priority (creates matching label)
|
|
priority: medium # critical, high, medium, low
|
|
|
|
# OPTIONAL: Milestone name
|
|
milestone: "v0.2.0-beta.2"
|
|
|
|
# OPTIONAL: GitHub usernames to assign
|
|
assignees: []
|
|
|
|
# OPTIONAL: Parent issue number for linking
|
|
# parent_issue: 42
|
|
|
|
# OPTIONAL: Parse ## sections as separate sub-issues
|
|
# create_sub_issues: true
|
|
---
|
|
|
|
# Issue Title
|
|
|
|
## Description
|
|
|
|
Clear description of the issue or feature request.
|
|
|
|
## Tasks
|
|
|
|
- [ ] Task 1
|
|
- [ ] Task 2
|
|
- [ ] Task 3
|
|
|
|
## Acceptance Criteria
|
|
|
|
- [ ] Criterion 1
|
|
- [ ] Criterion 2
|
|
|
|
## Related Issues
|
|
|
|
- #XX - Related issue description
|