mirror of
https://github.com/boolean-maybe/tiki
synced 2026-04-21 13:37:20 +00:00
add version field
This commit is contained in:
parent
f4e425b08b
commit
8a68544ac9
6 changed files with 8 additions and 0 deletions
|
|
@ -1,3 +1,4 @@
|
|||
version: 0.5.0
|
||||
description: |
|
||||
Default tiki workflow. A lightweight kanban-style flow with
|
||||
Backlog → Ready → In Progress → Review → Done, plus Story / Bug / Spike / Epic task types.
|
||||
|
|
|
|||
|
|
@ -21,6 +21,8 @@ var lastConfigFile string
|
|||
|
||||
// Config holds all application configuration loaded from config.yaml
|
||||
type Config struct {
|
||||
Version string `mapstructure:"version"`
|
||||
|
||||
// Logging configuration
|
||||
Logging struct {
|
||||
Level string `mapstructure:"level"` // "debug", "info", "warn", "error"
|
||||
|
|
@ -200,6 +202,7 @@ type viewsFileData struct {
|
|||
// kept in config package to avoid import cycle with plugin package.
|
||||
// all top-level sections must be listed here to survive round-trip serialization.
|
||||
type workflowFileData struct {
|
||||
Version string `yaml:"version,omitempty"`
|
||||
Description string `yaml:"description,omitempty"`
|
||||
Statuses []map[string]interface{} `yaml:"statuses,omitempty"`
|
||||
Types []map[string]interface{} `yaml:"types,omitempty"`
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ import (
|
|||
|
||||
// WorkflowFile represents the YAML structure of a workflow.yaml file
|
||||
type WorkflowFile struct {
|
||||
Version string `yaml:"version,omitempty"`
|
||||
Description string `yaml:"description,omitempty"`
|
||||
Views viewsSectionConfig `yaml:"views"`
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
version: 0.5.0
|
||||
description: |
|
||||
Bug tracker for triaging and resolving customer-reported issues.
|
||||
Six statuses (Open → Triaged → In Progress → In Review → Verified, plus Won't Fix),
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
version: 0.5.0
|
||||
description: |
|
||||
Kanban-style workflow for small-team software work. Five statuses
|
||||
(Backlog → Ready → In Progress → Review → Done) and four task types
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
version: 0.5.0
|
||||
description: |
|
||||
Minimal two-lane todo list. One task type, two statuses (Todo → Done).
|
||||
Use when you just want a lightweight checklist and don't need prioritization,
|
||||
|
|
|
|||
Loading…
Reference in a new issue