package webhook import ( "gitea.oblak.solutions/dimitar/gitFlow/pkg/status" ) // statusSymbol maps RepoStatus to an emoji marker suitable for webhook // messages (Slack and Discord rich text). func statusSymbol(s status.RepoStatus) string { switch s { case status.StatusClean: return "✅" case status.StatusModified: return "✏️" case status.StatusAhead: return "⬆️" case status.StatusBehind: return "⬇️" case status.StatusDiverged: return "🔀" case status.StatusDetached: return "📌" case status.StatusBare: return "📦" case status.StatusError: return "❌" default: return "❓" } }