Issue Import
Import GitHub issues and convert them into user stories ready for sprint planning.
Table of contents
- Prerequisites
- Import a Single Issue
- Preview Without Updating the Issue
- Import Multiple Issues
- Seed File Output
- Configuration
Prerequisites
- Install the GitHub CLI (
gh) and authenticate (gh auth login). - Configure
YOLO_GITHUB__TOKENor log in withgh.
Import a Single Issue
yolo import issue 42
This generates a story with acceptance criteria, then posts a summary comment
back to the issue (unless --preview is used).
Preview Without Updating the Issue
yolo import preview 42
Import Multiple Issues
yolo import issues 12 34 56
Filter by label:
yolo import issues --label "ready" --auto-seed
Search query:
yolo import issues --query "is:open label:feature"
Seed File Output
Use --auto-seed to write a seed file for later use:
yolo import issue 42 --auto-seed
Seed files are stored in .yolo/imported-issues/.
Configuration
Customize import behavior in yolo.yaml:
github:
import_config:
enabled: true
update_issues: true
add_label: yolo-imported
story:
id_prefix: US
estimate_points: true