This directory contains GitHub-specific configuration files for the Liquid AI Docker project.
.github/
├── ISSUE_TEMPLATE/ # Issue templates
│ ├── bug_report.md # Bug report template
│ ├── feature_request.md # Feature request template
│ └── documentation.md # Documentation issue template
├── PULL_REQUEST_TEMPLATE.md # Pull request template
└── workflows/ # GitHub Actions workflows (to be added)
We provide three issue templates to help structure contributions:
Use when reporting bugs or issues with the application.
- Clear bug description
- Steps to reproduce
- Expected vs actual behavior
- Environment details
Use when suggesting new features or enhancements.
- Feature description
- Use cases
- Alternatives considered
- Implementation ideas
Use when reporting documentation issues.
- Document location
- Issue description
- Suggested fixes
Our PR template helps ensure all necessary information is provided:
- Description of changes
- Type of change (bug fix, feature, docs, etc.)
- Testing performed
- Checklist for code quality, tests, and documentation
Planned workflows:
ci.yml- Continuous integration (tests, lint)docker.yml- Docker image buildsdocs.yml- Documentation deployment
stale.yml- Close stale issues/PRslabel.yml- Auto-label PRsrelease.yml- Automated releases
Recommended branch protection rules for main:
- ✅ Require pull request reviews (1+)
- ✅ Require status checks to pass
- ✅ Require conversation resolution
- ✅ Include administrators
- ✅ Restrict force pushes
Recommended repository settings:
- ✅ Enable issues
- ✅ Enable projects
- ✅ Enable wiki (optional)
- ✅ Enable discussions
- ✅ Wikis (for additional docs)
- ✅ Sponsorships (optional)
- ✅ Preserve this repository (archive)
- ✅ Enable dependency alerts
- ✅ Enable automated security fixes
- ✅ Enable vulnerability reporting
- ✅ Allow squash merging
- ✅ Allow rebase merging
- ⛔ Disallow merge commits (optional)
- ✅ Automatically delete head branches
Recommended labels:
Type:
bug- Something isn't workingfeature- New feature requestenhancement- Improvement to existing featuredocumentation- Documentation improvements
Priority:
critical- Critical priorityhigh- High prioritymedium- Medium prioritylow- Low priority
Status:
help wanted- Extra attention neededgood first issue- Good for newcomerswontfix- Won't be fixedduplicate- Duplicate issueinvalid- Invalid issue
Area:
frontend- Frontend relatedbackend- Backend relateddatabase- Database relateddocker- Docker relatedai- AI/ML related
Suggested milestones:
- v1.1.0 - Next minor release
- v1.2.0 - Future release
- v2.0.0 - Major release
- Documentation - Doc improvements
- Performance - Performance improvements
For questions about GitHub configuration:
- Check GitHub Docs
- Ask in Discussions
- Open an Issue
Last updated: 2025-11-02