Organization-level GitHub defaults for RentSpree.
| Path | Purpose |
|---|---|
.github/ISSUE_TEMPLATE/*.yml |
Issue form templates (bug, feature, tech debt, operational) |
.github/ISSUE_TEMPLATE/config.yml |
Issue template chooser configuration |
labels.yml |
Canonical label taxonomy (reference for org default labels) |
CODEOWNERS |
Default code ownership |
CONTRIBUTING.md |
Contributing guidelines |
Files in this repository serve as community health file defaults. Any RentSpree repository that does not define its own versions will inherit these files automatically.
Repositories can override any default by placing their own version in their .github/ directory.
Four issue form templates are available org-wide:
- Bug Report — Repro steps, expected/actual behavior, environment
- Feature Request — Problem statement, proposed solution, acceptance criteria
- Tech Debt — Current state, desired state, affected file paths
- Operational Issue — Severity, impact, mitigation steps
labels.yml defines a shared label scheme using a hybrid naming convention:
- Prefixed (
key/value) for multi-value categories where grouping aids filtering - Simple names for standalone type and AI labels (reuses GitHub defaults)
| Category | Style | Examples |
|---|---|---|
| Type | simple | bug, enhancement, tech-debt, operational |
priority/ |
prefixed | critical, high, medium, low |
area/ |
prefixed | frontend, backend, infrastructure, data, integrations |
severity/ |
prefixed | critical, high, medium, low |
status/ |
prefixed | triage, accepted, in-progress, blocked, wont-fix |
bot/ |
prefixed | md-drift, summary, md-first-gen |
| AI | simple | ai-candidate, ai-assigned, claude-code-assisted |
| Team | simple | team-ada, team-infradevex, team-magenta, etc. |
Org-level default labels are managed through the GitHub organization settings UI. Default labels are automatically applied to new repositories created in the org. When updating labels.yml, also update the org default labels in Settings > Repository defaults > Labels to keep them in sync.
See CONTRIBUTING.md.