Files
wg-admin/GITEA_ISSUES.md
Calmcacil 26120b8bc2 Add WireGuard TUI implementation
- Add Go TUI with bubbletea for WireGuard management
- Implement client CRUD operations with QR code generation
- Add configuration and validation modules
- Install/update scripts for client setup
- Update Makefile to build binaries to bin/ directory
- Add .gitignore for Go projects
2026-01-12 19:03:35 +01:00

60 lines
1.3 KiB
Markdown

# Gitea Issue Workflow
## Process for Working with Gitea Issues
### 1. Read Issue
```bash
# Get all issues
curl -s "https://gitea.calmcacil.dev/api/v1/repos/{owner}/{repo}/issues?state=open" | jq '.'
# Get specific issue
curl -s "https://gitea.calmcacil.dev/api/v1/repos/{owner}/{repo}/issues/{number}" | jq '.'
```
### 2. Analyze Issue
- Read title and body
- Check labels, assignee, milestone
- Identify blocking dependencies
- Determine if actionable
### 3. Create Task List
- Use `todowrite` for multi-step issues
- Break down into actionable steps
- Mark first step `in_progress`
### 4. Implement Fix
- Follow existing code patterns
- Make minimal changes
- Update relevant documentation
### 5. Verify Fix
- Run any available tests
- Manual verification of functionality
- Check for side effects
### 6. Commit Changes
```bash
git add -A
git commit -m "Brief description
Details about what was fixed.
Closes #{issue_number}"
```
### 7. Push and Close
```bash
git push
```
The `Closes #{issue_number}` in commit message will automatically close the issue via Gitea API.
## Guidelines
- Always read the full issue before starting work
- If issue is unclear, ask for clarification
- Create todos for 2+ step tasks
- Reference issue in commit message with `Closes #`
- Verify the fix actually resolves the issue
- Update documentation if behavior changes