Files
devdash-cli/src/models/types.py
7000pctAUTO 0250b4adc5
Some checks failed
CI / test (push) Has been cancelled
Initial upload: DevDash CLI with TUI dashboard
2026-02-01 06:52:52 +00:00

29 lines
506 B
Python

from enum import Enum
from pydantic import BaseModel
from typing import Optional, List
class Provider(str, Enum):
GITHUB = "github"
GITLAB = "gitlab"
class IssueStatus(str, Enum):
OPEN = "open"
IN_PROGRESS = "in_progress"
CLOSED = "closed"
class WorkflowStatus(str, Enum):
PENDING = "pending"
RUNNING = "running"
SUCCESS = "success"
FAILURE = "failure"
class PRStatus(str, Enum):
OPEN = "open"
MERGED = "merged"
CLOSED = "closed"
DRAFT = "draft"